Commit c371aea0 authored by Adrian Yanes's avatar Adrian Yanes Committed by Jean-Baptiste Kempf

lua: fix build soundcloud.lua

Details: From Lua 5.2: Change to '\z' escape.
Reject undefined escape sequences. The
proper way to match the dot in Lua is %.
Signed-off-by: default avatarPierre Ynard <linkfanel@yahoo.fr>
(cherry picked from commit 952370a4)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 6f3a5d60
......@@ -23,19 +23,19 @@
-- Probe function.
function probe()
return vlc.access == "http"
and string.match( vlc.path, "soundcloud\.com/.+/.+" )
and string.match( vlc.path, "soundcloud%.com/.+/.+" )
end
-- Parse function.
function parse()
if string.match ( vlc.path, "soundcloud\.com" ) then
if string.match ( vlc.path, "soundcloud%.com" ) then
while true do
line = vlc.readline()
if not line then break end
if string.match( line, "window\.SC\.bufferTracks\.push" ) then
if string.match( line, "window%.SC%.bufferTracks%.push" ) then
-- all the data is nicely stored on this one line
_,_,uid,token,name = string.find (line,
"window\.SC\.bufferTracks\.push.*" ..
"window%.SC%.bufferTracks%.push.*" ..
"\"uid\":\"([^\"]*)\".*" ..
"\"token\":\"([^\"]*)\".*" ..
"\"title\":\"([^\"]*)\"")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment