[bbccouk] Extend title extraction
[youtube-dl] / youtube_dl / extractor / bbc.py
index 5c621a32b450e54f8a4e7ce23d81dacfad3ddc4a..7b169881affaffa374a7fe7f327da237395dc977 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)
+            title = self._og_search_title(webpage, default=None) or self._html_search_regex(
+                r'<h2[^>]+id="parent-title"[^>]*>(.+?)</h2>', webpage, 'title')
             description = self._search_regex(
                 r'<p class="[^"]*medium-description[^"]*">([^<]+)</p>',
                 webpage, 'description', default=None)