From: Antoine Cellerier Date: Sun, 9 Sep 2007 21:01:31 +0000 (+0000) Subject: Fix the url translation X-Git-Tag: 0.9.0-test0~5713 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=cb7cc6e86a49864e2349c19484279370268e89fd;p=vlc Fix the url translation --- diff --git a/share/luaplaylist/dailymotion.lua b/share/luaplaylist/dailymotion.lua index b5182d0b8f..93e17cfdd8 100644 --- a/share/luaplaylist/dailymotion.lua +++ b/share/luaplaylist/dailymotion.lua @@ -1,5 +1,10 @@ -- $Id$ +--[[ + Translate Daily Motion video webpages URLs to the corresponding + FLV URL. +--]] + -- Probe function. function probe() return vlc.access == "http" @@ -13,9 +18,11 @@ function parse() do line = vlc.readline() if not line then break end - if string.match( line, "param name=\"flashvars\" value=\"url=" ) + if string.match( line, "param name=\"flashvars\" value=\".*url=" ) then - path = vlc.decode_uri( string.gsub( line, "^.*param name=\"flashvars\" value=\"url=([^&]*).*$", "%1" ) ) + vlc.msg_err( "Tada!" ) + path = vlc.decode_uri( string.gsub( line, "^.*param name=\"flashvars\" value=\".*url=([^&]*).*$", "%1" ) ) + vlc.msg_err( path ) end --[[ if string.match( line, "" ) then