1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-19 03:29:32 +00:00

[prosiebensat1] Improve title extraction (closes #12318)

This commit is contained in:
Thomas Christlieb 2017-03-09 17:18:37 +01:00 committed by Sergey M
parent 0e7f9a9b48
commit 2913821723

View file

@ -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)