Commit b63f84d1 authored by Antoine Cellerier's avatar Antoine Cellerier

Add a lua playlist script for trailers.apple.com pages.

parent 7d4a9c96
-- $Id$
--[[
Translate trailers.apple.com video webpages URLs to the corresponding
movie URL
--]]
-- Probe function.
function probe()
return vlc.access == "http"
and string.match( vlc.path, "trailers.apple.com" )
end
-- Parse function.
function parse()
p = {}
while true
do
line = vlc.readline()
if not line then break end
if string.match( line, "http://movies.apple.com/movies/.*%.mov" )
or string.match( line, "http://images.apple.com/movies/.*%.mov" )
then
if string.match( line, "http://movies.apple.com/movies/.*%.mov" ) then
path = vlc.decode_uri( string.gsub( line, "^.*(http://movies.apple.com/movies/.*%.mov).*$", "%1" ) )
elseif string.match( line, "http://images.apple.com/movies/.*%.mov" ) then
path = vlc.decode_uri( string.gsub( line, "^.*(http://images.apple.com/movies/.*%.mov).*$", "%1" ) )
end
if string.match( path, "480p" ) then
extraname = " (480p)"
elseif string.match( path, "720p" ) then
extraname = " (720p)"
elseif string.match( path, "1080p" ) then
extraname = " (1080p)"
else
extraname = ""
end
vlc.msg_err( path )
table.insert( p, { path = path; name = title..extraname; description = description; url = vlc.path } )
end
if string.match( line, "<title>" )
then
title = vlc.decode_uri( string.gsub( line, "^.*<title>([^<]*).*$", "%1" ) )
end
if string.match( line, "<meta name=\"Description\"" )
then
description = vlc.resolve_xml_special_chars( string.gsub( line, "^.*name=\"Description\" content=\"([^\"]*)\".*$", "%1" ) )
end
end
return p
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