diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-03-20 18:14:02 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-03-20 18:15:53 +0800 |
commit | 2648918c814773e746c6d26da834d32eac952ffa (patch) | |
tree | 7dac20bec643e90a43ac55f1e6da1cd600bc3776 /youtube_dl | |
parent | 920d318d3cf70ee0b80cc67e7d3f85b5d45a20a7 (diff) |
[vlive] Fix creator extraction (closes #8814)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/vlive.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vlive.py b/youtube_dl/extractor/vlive.py index 9e2aa58bd..bd5545173 100644 --- 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')) |