Browse Source

Fix vimeo error (Closes #224)

rtmp_test
Philipp Hagemeister 13 years ago
parent
commit
28e3614bc0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube-dl

+ 1
- 1
youtube-dl View File

@ -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…
Cancel
Save