youtube-dl

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

commit 29f07568051012599320b076d8bddcdb726b3258
parent d9bc015b3ca1071c008783e8ae8e36f4ca8e4edf
Author: Ricardo Garcia <sarbalap+freshmeat@gmail.com>
Date:   Tue, 24 Nov 2009 20:40:34 +0100

Fix detection of uploader nickname in metacafe (fixes issue #67)

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

diff --git a/youtube-dl b/youtube-dl @@ -868,7 +868,7 @@ class MetacafeIE(InfoExtractor): return video_title = mobj.group(1).decode('utf-8') - mobj = re.search(r'(?ms)<li id="ChnlUsr">.*?Submitter:.*?<a .*?>(.*?)<', webpage) + mobj = re.search(r'(?ms)By:\s*<a .*?>(.+?)<', webpage) if mobj is None: self._downloader.trouble(u'ERROR: unable to extract uploader nickname') return