Sfoglia il codice sorgente

[drtuber] Fix title extraction (closes #16107)

Parmjit Virk 7 anni fa
parent
commit
9d15be3a5b
1 ha cambiato i file con 3 aggiunte e 1 eliminazioni
  1. 3 1
      youtube_dl/extractor/drtuber.py

+ 3 - 1
youtube_dl/extractor/drtuber.py

@@ -66,7 +66,9 @@ class DrTuberIE(InfoExtractor):
         self._sort_formats(formats)
         self._sort_formats(formats)
 
 
         title = self._html_search_regex(
         title = self._html_search_regex(
-            (r'class="title_watch"[^>]*><(?:p|h\d+)[^>]*>([^<]+)<',
+            (r'<h1[^>]+class=["\']title[^>]+>([^<]+)',
+             r'<title>([^<]+)\s*@\s+DrTuber',
+             r'class="title_watch"[^>]*><(?:p|h\d+)[^>]*>([^<]+)<',
              r'<p[^>]+class="title_substrate">([^<]+)</p>',
              r'<p[^>]+class="title_substrate">([^<]+)</p>',
              r'<title>([^<]+) - \d+'),
              r'<title>([^<]+) - \d+'),
             webpage, 'title')
             webpage, 'title')