Commit c3d96600 authored by Ilkka Ollakka's avatar Ilkka Ollakka

appletrailers: fix location finding

parent 4d429b61
...@@ -39,9 +39,12 @@ function main() ...@@ -39,9 +39,12 @@ function main()
if string.match( line, "title" ) then if string.match( line, "title" ) then
title = vlc.strings.resolve_xml_special_chars( find( line, "title\":\"(.-)\"")) title = vlc.strings.resolve_xml_special_chars( find( line, "title\":\"(.-)\""))
art = find( line, "poster\":\"(.-)\"") art = find( line, "poster\":\"(.-)\"")
art = "http://trailers.apple.com"..art if string.match( art, "http://" ) then
else
art = "http://trailers.apple.com"..art
end
url = find( line, "url\":\"(.-)\"") url = find( line, "location\":\"(.-)\"")
playlist = vlc.stream( "http://trailers.apple.com"..url.."includes/playlists/web.inc" ) playlist = vlc.stream( "http://trailers.apple.com"..url.."includes/playlists/web.inc" )
if not playlist then if not playlist then
vlc.msg.info("Didn't get playlist...") vlc.msg.info("Didn't get playlist...")
......
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