]> git.sesse.net Git - vlc/commitdiff
lua: update lelombrik script
authorRafaël Carré <funman@videolan.org>
Tue, 30 Oct 2007 03:58:28 +0000 (03:58 +0000)
committerRafaël Carré <funman@videolan.org>
Tue, 30 Oct 2007 03:58:28 +0000 (03:58 +0000)
share/luaplaylist/lelombrik.lua

index 9e5d23be9c086b5f06542ebace23b96a7b8add37..8002ce7205ab7ea20a5246ce5f5781258993558c 100644 (file)
@@ -16,12 +16,12 @@ function parse()
         if string.match( line, "id=\"nom_fichier\">" ) then
             vidtitle = string.gsub( line, ".*\"nom_fichier\">([^<]*).*", "%1" )
         end
-        if string.match( line, "<param name=\"movie\"" ) then
+        if string.match( line, "flvplayer.swf" ) then
             -- fallback: retrieve the title from the url if we didn't find it
             if vidtitle == "" then
                 vidtitle = string.gsub( vlc.path, ".*/([^.]*).*", "%1" )
             end
-            return { { path = string.gsub( line, ".*%?file=([^&]*).*", "%1" ); arturl = string.gsub( line, ".*&image=([^&]*).*", "%1" ); title = vidtitle } }
+            return { { path = string.gsub( line, ".*flashvars=\"&file=([^&]*).*", "%1" ); arturl = string.gsub( line, ".*&image=([^&]*).*", "%1" ); title = vidtitle } }
         end
     end
 end