]> git.sesse.net Git - vlc/blob - share/lua/playlist/youtube.lua
Update lua playlist scripts to new API. (untested)
[vlc] / share / lua / playlist / youtube.lua
1 --[[
2  $Id$
3
4  Copyright © 2007 the VideoLAN team
5
6  This program is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2 of the License, or
9  (at your option) any later version.
10
11  This program is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  GNU General Public License for more details.
15
16  You should have received a copy of the GNU General Public License
17  along with this program; if not, write to the Free Software
18  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19 --]]
20
21 -- Helper function to get a parameter's value in a URL
22 function get_url_param( url, name )
23     return string.gsub( url, "^.*[&?]"..name.."=([^&]*).*$", "%1" )
24 end
25
26 function get_arturl( path, video_id )
27     if string.match( vlc.path, "iurl=" ) then
28         return vlc.strings.decode_uri( get_url_param( vlc.path, "iurl" ) )
29     end
30     if not arturl then
31         return "http://img.youtube.com/vi/"..video_id.."/default.jpg"
32     end
33 end
34
35 -- Probe function.
36 function probe()
37     if vlc.access ~= "http" then
38         return false
39     end
40     youtube_site = string.match( string.sub( vlc.path, 1, 8 ), "youtube" )
41     if not youtube_site then
42         -- FIXME we should be using a builtin list of known youtube websites
43         -- like "fr.youtube.com", "uk.youtube.com" etc..
44         youtube_site = string.find( vlc.path, ".youtube.com" )
45         if youtube_site == nil then
46             return false
47         end
48     end
49     return (  string.match( vlc.path, "watch%?v=" ) -- the html page
50             or string.match( vlc.path, "watch_fullscreen%?video_id=" ) -- the fullscreen page
51             or string.match( vlc.path, "p.swf" ) -- the (old?) player url
52             or string.match( vlc.path, "jp.swf" ) -- the (new?) player url (as of 24/08/2007)
53             or string.match( vlc.path, "player2.swf" ) ) -- another player url
54 end
55
56 -- Parse function.
57 function parse()
58     if string.match( vlc.path, "watch%?v=" )
59     then -- This is the HTML page's URL
60         while true do
61             -- Try to find the video's title
62             line = vlc.readline()
63             if not line then break end
64             if string.match( line, "<meta name=\"title\"" ) then
65                 name = string.gsub( line, "^.*content=\"([^\"]*).*$", "%1" )
66             end
67             if string.match( line, "<meta name=\"description\"" ) then
68                 description = string.gsub( line, "^.*content=\"([^\"]*).*$", "%1" )
69             end
70             if string.match( line, "subscribe_to_user=" ) then
71                 artist = string.gsub( line, ".*subscribe_to_user=([^&]*).*", "%1" )
72             end
73             -- OLD: var swfArgs = {hl:'en',BASE_YT_URL:'http://youtube.com/',video_id:'XPJ7d8dq0t8',l:'292',t:'OEgsToPDskLFdOYrrlDm3FQPoQBYaCP1',sk:'0gnr-AE6QZJEZmCMd3lq_AC'};
74             -- NEW: var swfArgs = { "BASE_YT_URL": "http://youtube.com", "video_id": "OHVvVmUNBFc", "l": 88, "sk": "WswKuJzDBsdD6oG3IakCXgC", "t": "OEgsToPDskK3zO44y0QN8Fr5ZSAZwCQp", "plid": "AARGnwWMrmGkbpOxAAAA4AT4IAA", "tk": "mEL4E7PqHeaZp5OG19NQThHt9mXJU4PbRTOw6lz9osHi4Hixp7RE1w=="};
75             if string.match( line, "swfArgs" ) and string.match( line, "video_id" ) then
76                 if string.match( line, "BASE_YT_URL" ) then
77                     base_yt_url = string.gsub( line, ".*\"BASE_YT_URL\": \"([^\"]*).*", "%1" )
78                 end
79                 t = string.gsub( line, ".*\"t\": \"([^\"]*).*", "%1" )
80                 -- vlc.msg_err( t )
81                 -- video_id = string.gsub( line, ".*&video_id:'([^']*)'.*", "%1" )
82             end
83             if name and description and artist --[[and video_id]] then break end
84         end
85         if not video_id then
86             video_id = get_url_param( vlc.path, "v" )
87         end
88         if not base_yt_url then
89             base_yt_url = "http://youtube.com/"
90         end
91         arturl = get_arturl( vlc.path, video_id )
92         if t then
93             return { { path = base_yt_url .. "get_video?video_id="..video_id.."&t="..t; name = name; description = description; artist = artist; arturl = arturl } }
94         else
95             -- This shouldn't happen ... but keep it as a backup.
96             return { { path = "http://www.youtube.com/v/"..video_id; name = name; description = description; artist = artist; arturl = arturl } }
97         end
98     else -- This is the flash player's URL
99         if string.match( vlc.path, "title=" ) then
100             name = get_url_param( vlc.path, "title" )
101         end
102         video_id = get_url_param( vlc.path, "video_id" )
103         arturl = get_arturl( vlc.path, video_id )
104         if not string.match( vlc.path, "t=" ) then
105             -- This sucks, we're missing "t" which is now mandatory. Let's
106             -- try using another url
107             return { { path = "http://www.youtube.com/v/"..video_id; name = name; arturl = arturl } }
108         end
109         return { { path = "http://www.youtube.com/get_video.php?video_id="..video_id.."&t="..get_url_param( vlc.path, "t" ); name = name; arturl = arturl } }
110     end
111 end