youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 28e3614bc0731cd1549e924bd1e1a77d8bb02e31
parent 208e095f72aaa014d5e0140e4b5ac38cfd30553f
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Wed, 23 Nov 2011 10:35:17 +0100

Fix vimeo error (Closes #224)

Diffstat:
Myoutube-dl | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube-dl b/youtube-dl @@ -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)