Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
96e4d7a3
Commit
96e4d7a3
authored
Jul 23, 2013
by
Pierre Ynard
Browse files
youtube.lua: fix author name
parent
d9e952a9
Changes
1
Hide whitespace changes
Inline
Side-by-side
share/lua/playlist/youtube.lua
View file @
96e4d7a3
...
...
@@ -240,6 +240,10 @@ function parse()
title = vlc.strings.decode_uri( title )
end
local artist = string.match( line, "&author=([^&]*)" )
if artist then
artist = string.gsub( artist, "+", " " )
-- Not sure if there may be encoded characters to decode here
end
local arturl = string.match( line, "&thumbnail_url=([^&]*)" )
if arturl then
arturl = vlc.strings.decode_uri( arturl )
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment