]> git.sesse.net Git - vlc/commitdiff
Canal+ lua demux. Example use: vlc --http-forward-cookies "http://www.canalplus.fr...
authorAntoine Cellerier <dionoea@videolan.org>
Sat, 19 Jan 2008 18:37:45 +0000 (18:37 +0000)
committerAntoine Cellerier <dionoea@videolan.org>
Sat, 19 Jan 2008 18:37:45 +0000 (18:37 +0000)
share/luaplaylist/canalplus.lua [new file with mode: 0644]

diff --git a/share/luaplaylist/canalplus.lua b/share/luaplaylist/canalplus.lua
new file mode 100644 (file)
index 0000000..a83ad92
--- /dev/null
@@ -0,0 +1,87 @@
+--[[
+ $Id: $
+
+ Copyright © 2007 the VideoLAN team
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+--]]
+
+-- Probe function.
+function probe()
+    return vlc.access == "http" and string.match( vlc.path, "www.canalplus.fr" )
+end
+
+-- Parse function.
+function parse()
+    p = {}
+    --vlc.msg_dbg( vlc.path )
+    if string.match( vlc.path, "www.canalplus.fr/index.php%?pid=" )
+    then -- This is the HTML page's URL
+        local id, name, description, arturl
+        while true do
+            -- Try to find the video's title
+            local line = vlc.readline()
+            if not line then break end
+            -- vlc.msg_dbg( line )
+            if string.match( line, "aVideos" ) then
+                if string.match( line, "CONTENT_ID.*=" ) then
+                    id = string.gsub( line, "^.*\"(.-)\".*$", "%1" )
+                elseif string.match( line, "CONTENT_VNC_TITRE" ) then
+                    arturl = string.gsub( line, "^.*src=\"(.-)\".*$", "%1" )
+                    name = string.gsub( line, "^.*alt=\"(.-)\".*$", "%1" )
+                elseif string.match( line, "CONTENT_VNC_DESCRIPTION" ) then
+                    description = string.gsub( line, "^.*\"(.-)\".*$", "%1" )
+                end
+                if id and string.match( line, "new Array" ) then
+                    add_item( p, id, name, description, arturl )
+                    id = nil
+                    name = nil
+                    arturl = nil
+                    description = nil
+                end
+            end
+        end
+        if id then
+            add_item( p, id, name, description, arturl )
+        end
+        return p
+    elseif string.match( vlc.path, "embed%-video%-player" ) then
+        while true do
+            local line = vlc.readline()
+            if not line then break end
+            --vlc.msg_dbg( line )
+            if string.match( line, "<hi>" ) then
+                local path = string.gsub( line, "^.*%[(.-)%].*$", "%1" )
+                vlc.msg_err("Path is: " .. tostring( path ) )
+                return { { path = path } }
+            end
+        end
+    end
+end
+
+function get_url_param( url, name )
+    return string.gsub( url, "^.*[&?]"..name.."=([^&]*).*$", "%1" )
+end
+
+function add_item( p, id, name, description, arturl )
+    --[[vlc.msg_dbg( "id: " .. tostring(id) )
+    vlc.msg_dbg( "name: " .. tostring(name) )
+    vlc.msg_dbg( "arturl: " .. tostring(arturl) )
+    vlc.msg_dbg( "description: " .. tostring(description) )
+    --]]
+    --local path = "http://www.canalplus.fr/flash/xml/configuration/configuration-embed-video-player.php?xmlParam="..id.."-"..get_url_param(vlc.path,"pid")
+    local path = "http://www.canalplus.fr/flash/xml/module/embed-video-player/embed-video-player.php?video_id="..id.."&pid="..get_url_param(vlc.path,"pid")
+    table.insert( p, { path = path; name = name; description = description; arturl = arturl } )
+end