mirror of https://github.com/yt-dlp/yt-dlp.git
Fix vimeo error (Closes #224)
This commit is contained in:
parent
208e095f72
commit
28e3614bc0
|
@ -2014,7 +2014,7 @@ class VimeoIE(InfoExtractor):
|
|||
self._downloader.trouble(u'ERROR: unable to extract video title')
|
||||
return
|
||||
video_title = mobj.group(1).decode('utf-8')
|
||||
simple_title = _simple_title(video_title)
|
||||
simple_title = _simplify_title(video_title)
|
||||
|
||||
# Extract uploader
|
||||
mobj = re.search(r'<uploader_url>http://vimeo.com/(.*?)</uploader_url>', webpage)
|
||||
|
|
Loading…
Reference in New Issue