]> git.sesse.net Git - vlc/blob - share/luaplaylist/dailymotion.lua
Remove useless test before free and delete.
[vlc] / share / luaplaylist / dailymotion.lua
1 --[[
2     Translate Daily Motion video webpages URLs to the corresponding
3     FLV URL.
4
5  $Id$
6
7  Copyright © 2007 the VideoLAN team
8
9  This program is free software; you can redistribute it and/or modify
10  it under the terms of the GNU General Public License as published by
11  the Free Software Foundation; either version 2 of the License, or
12  (at your option) any later version.
13
14  This program is distributed in the hope that it will be useful,
15  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  GNU General Public License for more details.
18
19  You should have received a copy of the GNU General Public License
20  along with this program; if not, write to the Free Software
21  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 --]]
23
24 -- Probe function.
25 function probe()
26     return vlc.access == "http"
27         and string.match( vlc.path, "dailymotion.com" ) 
28         and string.match( vlc.peek( 256 ), "<!DOCTYPE.*<title>Video " )
29 end
30
31 -- Parse function.
32 function parse()
33     while true
34     do 
35         line = vlc.readline()
36         if not line then break end
37         if string.match( line, "param name=\"flashvars\" value=\".*video=" )
38         then
39             arturl = vlc.decode_uri( string.gsub( line, "^.*param name=\"flashvars\" value=\".*preview=([^&]*).*$", "%1" ) )
40             videos = vlc.decode_uri( string.gsub( line, "^.*param name=\"flashvars\" value=\".*video=([^&]*).*$", "%1" ) )
41        --[[ we get a list of different streams available, at various codecs
42             and resolutions:
43             /A@@spark||/B@@spark-mini||/C@@vp6-hd||/D@@vp6||/E@@h264
44             Not everybody can decode HD, not everybody has a 80x60 screen,
45             H264/MP4 is buggy , so i choose VP6
46
47             Ideally, VLC would propose the different streams available, codecs
48             and resolutions (the resolutions are part of the URL)
49          ]]
50             for n in string.gmatch(videos, "[^|]+") do
51                 i = string.find(n, "@@")
52                 if i then
53                     video = string.sub( n, 0, i - 1)
54                     codec = string.sub( n, i + 2 )
55                     if video and codec and string.match(codec, "vp6") then
56                         path = "http://dailymotion.com" .. video
57                         break
58                     end
59                 end
60             end
61         end
62         if string.match( line, "<meta name=\"description\"" )
63         then
64             name = vlc.resolve_xml_special_chars( string.gsub( line, "^.*name=\"description\" content=\"%w+ (.*) %w+ %w+ %w+ %w+ Videos\..*$", "%1" ) )
65             description = vlc.resolve_xml_special_chars( string.gsub( line, "^.*name=\"description\" content=\"%w+ .* %w+ %w+ %w+ %w+ Videos\. ([^\"]*)\".*$", "%1" ) )
66         end
67         if path and name and description and arturl then break end
68     end
69     return { { path = path; name = name; description = description; url = vlc.path; arturl = arturl } }
70 end