Commit cc56ca3a authored by Cheng Sun's avatar Cheng Sun Committed by Jean-Baptiste Kempf

lua vimeo playlist: no need to parse vlc.path more than once

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 9e6d4804
...@@ -51,6 +51,8 @@ function parse() ...@@ -51,6 +51,8 @@ function parse()
if string.match ( vlc.path, "vimeo.com/moogaloop" ) then if string.match ( vlc.path, "vimeo.com/moogaloop" ) then
prefres = get_prefres() prefres = get_prefres()
ishd = false ishd = false
-- Try to find id of the video
_,_,id = string.find (vlc.path, "vimeo.com/moogaloop/load/clip:(.*)/local/")
while true do while true do
-- Try to find the video's title -- Try to find the video's title
line = vlc.readline() line = vlc.readline()
...@@ -58,8 +60,6 @@ function parse() ...@@ -58,8 +60,6 @@ function parse()
if string.match( line, "<caption>(.*)</caption>" ) then if string.match( line, "<caption>(.*)</caption>" ) then
_,_,name = string.find (line, "<caption>(.*)</caption>" ) _,_,name = string.find (line, "<caption>(.*)</caption>" )
end end
-- Try to find id of the video
_,_,id = string.find (vlc.path, "vimeo.com/moogaloop/load/clip:(.*)/local/")
-- Try to find image for thumbnail -- Try to find image for thumbnail
if string.match( line, "<thumbnail>(.*)</thumbnail>" ) then if string.match( line, "<thumbnail>(.*)</thumbnail>" ) then
_,_,arturl = string.find (line, "<thumbnail>(.*)</thumbnail>" ) _,_,arturl = string.find (line, "<thumbnail>(.*)</thumbnail>" )
......
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