mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 23:02:40 +00:00
Use unquote_plus to decode video title
This commit is contained in:
parent
583c714fde
commit
ab1f697827
1 changed files with 1 additions and 1 deletions
|
@ -723,7 +723,7 @@ class YoutubeIE(InfoExtractor):
|
|||
if mobj is None:
|
||||
self._downloader.trouble(u'ERROR: unable to extract video title')
|
||||
return
|
||||
video_title = urllib.unquote(mobj.group(1))
|
||||
video_title = urllib.unquote_plus(mobj.group(1))
|
||||
video_title = video_title.decode('utf-8')
|
||||
video_title = re.sub(ur'(?u)&(.+?);', self.htmlentity_transform, video_title)
|
||||
video_title = video_title.replace(os.sep, u'%')
|
||||
|
|
Loading…
Reference in a new issue