]> git.sesse.net Git - vlc/commitdiff
New script for break.com videos website
authorRafaël Carré <funman@videolan.org>
Sat, 3 Nov 2007 14:08:32 +0000 (14:08 +0000)
committerRafaël Carré <funman@videolan.org>
Sat, 3 Nov 2007 14:08:32 +0000 (14:08 +0000)
share/luaplaylist/break.lua [new file with mode: 0644]

diff --git a/share/luaplaylist/break.lua b/share/luaplaylist/break.lua
new file mode 100644 (file)
index 0000000..da6ae18
--- /dev/null
@@ -0,0 +1,34 @@
+-- $Id$
+
+-- Probe function.
+function probe()
+    return vlc.access == "http"
+        and string.match( vlc.path, "www.break.com" ) 
+end
+
+-- Parse function.
+function parse()
+    filepath = ""
+    filename = ""
+    filetitle = ""
+    arturl = ""
+    while true do
+        line = vlc.readline()
+        if not line then break end
+        if string.match( line, "sGlobalContentFilePath=" ) then
+            filepath= string.gsub( line, ".*sGlobalContentFilePath='([^']*).*", "%1" )
+        end
+        if string.match( line, "sGlobalFileName=" ) then
+            filename = string.gsub( line, ".*sGlobalFileName='([^']*).*", "%1")
+        end
+        if string.match( line, "sGlobalContentTitle=" ) then
+            filetitle = string.gsub( line, ".*sGlobalContentTitle='([^']*).*", "%1")
+        end
+        if string.match( line, "el=\"videothumbnail\" href=\"" ) then
+            arturl = string.gsub( line, ".*el=\"videothumbnail\" href=\"([^\"]*).*", "%1" )
+        end
+        if string.match( line, "videoPath" ) then
+            return { { path = ( string.gsub( line, ".*videoPath', '([^']*).*", "%1" ) )..filepath.."/"..filename..".flv"; title = filetitle; arturl = arturl } }
+        end
+    end
+end