[bbc] Add another title regex (Closes #8340)
authorSergey M․ <dstftw@gmail.com>
Thu, 28 Jan 2016 17:19:53 +0000 (23:19 +0600)
committerSergey M․ <dstftw@gmail.com>
Thu, 28 Jan 2016 17:19:53 +0000 (23:19 +0600)
youtube_dl/extractor/bbc.py

index 1c493b72d9d4a08accaea8f8f7dc68fe693f3fe9..210ce568b7a5ccd2db00bd0510398cf890498c26 100644 (file)
@@ -482,7 +482,8 @@ class BBCCoUkIE(InfoExtractor):
         if programme_id:
             formats, subtitles = self._download_media_selector(programme_id)
             title = self._og_search_title(webpage, default=None) or self._html_search_regex(
-                r'<h2[^>]+id="parent-title"[^>]*>(.+?)</h2>', webpage, 'title')
+                (r'<h2[^>]+id="parent-title"[^>]*>(.+?)</h2>',
+                 r'<div[^>]+class="info"[^>]*>\s*<h1>(.+?)</h1>'), webpage, 'title')
             description = self._search_regex(
                 r'<p class="[^"]*medium-description[^"]*">([^<]+)</p>',
                 webpage, 'description', default=None)