Commit c163f06e authored by Ludovic Fauvet's avatar Ludovic Fauvet Committed by Jean-Baptiste Kempf

lua soundcloud: fetch artwork

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent ac2ccb3a
......@@ -29,6 +29,7 @@ end
-- Parse function.
function parse()
if string.match ( vlc.path, "soundcloud%.com" ) then
arturl = nil
while true do
line = vlc.readline()
if not line then break end
......@@ -42,9 +43,13 @@ function parse()
-- we only want the first one of these lines
break
end
-- try to get the art url
if string.match( line, "artwork--download--link" ) then
_,_,arturl = string.find( line, " href=\"(.*)\" " )
end
end
path = "http://media.soundcloud.com/stream/"..uid.."?stream_token="..token
return { { path = path; name = name } }
return { { path = path; name = name; arturl = arturl } }
end
return {}
end
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