]> git.sesse.net Git - vlc/blob - share/lua/playlist/appletrailers.lua
dd1a5f1246da3320c16a0419c11f398d87343826
[vlc] / share / lua / playlist / appletrailers.lua
1 --[[
2    Translate trailers.apple.com video webpages URLs to the corresponding
3    movie URL
4
5  $Id$
6  Copyright © 2007 the VideoLAN team
7
8  This program is free software; you can redistribute it and/or modify
9  it under the terms of the GNU General Public License as published by
10  the Free Software Foundation; either version 2 of the License, or
11  (at your option) any later version.
12
13  This program is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  GNU General Public License for more details.
17
18  You should have received a copy of the GNU General Public License
19  along with this program; if not, write to the Free Software
20  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21 --]]
22
23 -- Probe function.
24 function probe()
25     return vlc.access == "http"
26         and string.match( vlc.path, "www.apple.com/trailers" ) 
27 end
28
29 function find( haystack, needle )
30     local _,_,r = string.find( haystack, needle )
31     return r
32 end
33
34 -- Parse function.
35 function parse()
36     p = {}
37     while true
38     do 
39         line = vlc.readline()
40         if not line then break end
41         for path in string.gmatch( line, "http://movies.apple.com/movies/.-%.mov" ) do
42             path = vlc.strings.decode_uri( path )
43             if string.match( path, "320" ) then
44                 extraname = " (320p)"
45             elseif string.match( path, "480" ) then
46                 extraname = " (480p)"
47             elseif string.match( path, "640" ) then
48                 extraname = " (640p)"
49             elseif string.match( path, "720" ) then
50                 extraname = " (720p)"
51             elseif string.match( path, "1080" ) then
52                 extraname = " (1080p)"
53             else
54                 extraname = ""
55             end
56             table.insert( p, { path = path; name = title..extraname; description = description; url = vlc.path; options = ":http-user-agent=\"QuickTime\"" } )
57         end
58         if string.match( line, "<title>" )
59         then
60             title = vlc.strings.decode_uri( find( line, "<title>(.-)<" ) )
61         end
62         if string.match( line, "<meta name=\"Description\"" )
63         then
64             description = vlc.strings.resolve_xml_special_chars( find( line, "name=\"Description\" content=\"(.-)\"" ) )
65         end
66     end
67     return p
68 end