youtube-dl

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

commit 2648918c814773e746c6d26da834d32eac952ffa
parent 920d318d3cf70ee0b80cc67e7d3f85b5d45a20a7
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Sun, 20 Mar 2016 18:14:02 +0800

[vlive] Fix creator extraction (closes #8814)

Diffstat:
Myoutube_dl/extractor/vlive.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/vlive.py b/youtube_dl/extractor/vlive.py @@ -64,7 +64,7 @@ class VLiveIE(InfoExtractor): thumbnail = self._og_search_thumbnail(webpage) creator = self._html_search_regex( - r'<div[^>]+class="info_area"[^>]*>\s*<strong[^>]+class="name"[^>]*>([^<]+)</strong>', + r'<div[^>]+class="info_area"[^>]*>\s*<a\s+[^>]*>([^<]+)', webpage, 'creator', fatal=False) view_count = int_or_none(playinfo.get('meta', {}).get('count'))