mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-11 07:19:30 +01:00
Allow empty titles because they do appear in some videos (fixes issue #53)
This commit is contained in:
parent
850ab76560
commit
583c714fde
@ -719,7 +719,7 @@ class YoutubeIE(InfoExtractor):
|
|||||||
video_uploader = urllib.unquote(mobj.group(1))
|
video_uploader = urllib.unquote(mobj.group(1))
|
||||||
|
|
||||||
# title
|
# title
|
||||||
mobj = re.search(r'(?m)&title=([^&]+)(?:&|$)', video_info_webpage)
|
mobj = re.search(r'(?m)&title=([^&]*)(?:&|$)', video_info_webpage)
|
||||||
if mobj is None:
|
if mobj is None:
|
||||||
self._downloader.trouble(u'ERROR: unable to extract video title')
|
self._downloader.trouble(u'ERROR: unable to extract video title')
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user