logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: 3021cf83b7cd45283fd1a72859e46f44e67ce7bf
parent 04a741232f8e03cc91a3539066c66aed802076b9
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed, 15 Feb 2017 02:08:32 +0700

[pinkbike] Fix uploader extraction (closes #12054)

Diffstat:

Myoutube_dl/extractor/pinkbike.py3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/pinkbike.py b/youtube_dl/extractor/pinkbike.py @@ -64,7 +64,8 @@ class PinkbikeIE(InfoExtractor): 'video:duration', webpage, 'duration')) uploader = self._search_regex( - r'un:\s*"([^"]+)"', webpage, 'uploader', fatal=False) + r'<a[^>]+\brel=["\']author[^>]+>([^<]+)', webpage, + 'uploader', fatal=False) upload_date = unified_strdate(self._search_regex( r'class="fullTime"[^>]+title="([^"]+)"', webpage, 'upload date', fatal=False))