logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: 2913821723c826a0d2bfc16427592bf2b9d6d31c
parent 0e7f9a9b48700efd40c4068b00364a7963dc9265
Author: Thomas Christlieb <thomaschristlieb@hotmail.com>
Date:   Thu,  9 Mar 2017 17:18:37 +0100

[prosiebensat1] Improve title extraction (closes #12318)


Diffstat:

Myoutube_dl/extractor/prosiebensat1.py4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/prosiebensat1.py b/youtube_dl/extractor/prosiebensat1.py @@ -369,7 +369,9 @@ class ProSiebenSat1IE(ProSiebenSat1BaseIE): def _extract_clip(self, url, webpage): clip_id = self._html_search_regex( self._CLIPID_REGEXES, webpage, 'clip id') - title = self._html_search_regex(self._TITLE_REGEXES, webpage, 'title') + title = self._html_search_regex(self._TITLE_REGEXES, webpage, 'title', default=None) + if title is None: + title = self._og_search_title(webpage) info = self._extract_video_info(url, clip_id) description = self._html_search_regex( self._DESCRIPTION_REGEXES, webpage, 'description', default=None)