youtube-dl

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

commit a130adb25bb16422a4a03da9252f09839d490494
parent 8756c5fe7a7eed00361fc6543ccf3a66aa768be0
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sun, 23 Jun 2013 19:41:28 +0200

[Statigr.am] Correct uploader id

Diffstat:
Myoutube_dl/InfoExtractors.py | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py @@ -4593,8 +4593,8 @@ class StatigramIE(InfoExtractor): r'<title>(.+?)</title>', webpage, u'title') title = html_title.rpartition(u' | Statigram')[0] - uploader = self._html_search_regex( - r'@(.+) \(Videos\)', title, u'uploader name', fatal=False) + uploader_id = self._html_search_regex( + r'@([^ ]+)', title, u'uploader name', fatal=False) ext = 'mp4' return [{ @@ -4603,7 +4603,7 @@ class StatigramIE(InfoExtractor): 'ext': ext, 'title': title, 'thumbnail': thumbnail_url, - 'uploader' : uploader + 'uploader_id' : uploader_id }] def gen_extractors():