Commit d938db4c authored by Pierre Ynard's avatar Pierre Ynard

youtube.lua: update to new website changes

This will do for now to meet popular demand
(cherry picked from commit 04be17ebea21153734bcc8fa04948bd4cc0af67b)
Signed-off-by: default avatarPierre Ynard <linkfanel@yahoo.fr>
parent fa5fb6cc
...@@ -88,6 +88,8 @@ function parse() ...@@ -88,6 +88,8 @@ function parse()
-- vlc.msg.err( t ) -- vlc.msg.err( t )
-- video_id = string.gsub( line, ".*&video_id:'([^']*)'.*", "%1" ) -- video_id = string.gsub( line, ".*&video_id:'([^']*)'.*", "%1" )
fmt_url_map = string.match( line, "\"fmt_url_map\": \"(.-)\"" ) fmt_url_map = string.match( line, "\"fmt_url_map\": \"(.-)\"" )
-- FIXME: do this properly
fmt_url_map = string.gsub( fmt_url_map, "\\u0026", "&" )
if fmt_url_map then if fmt_url_map then
for itag,url in string.gmatch( fmt_url_map, "(%d+)|([^,]+)" ) do for itag,url in string.gmatch( fmt_url_map, "(%d+)|([^,]+)" ) do
-- Apparently formats are listed in quality order, -- Apparently formats are listed in quality order,
......
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