Browse Source

[vlive] Fix creator extraction (closes #8814)

Yen Chi Hsuan 9 years ago
parent
commit
2648918c81
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/vlive.py

+ 1 - 1
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'))