mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
[prosiebensat1] Improve title extraction and add test
This commit is contained in:
parent
2913821723
commit
76bee08fe7
@ -300,6 +300,21 @@ class ProSiebenSat1IE(ProSiebenSat1BaseIE):
|
|||||||
'skip_download': True,
|
'skip_download': True,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
# title in <h2 class="subtitle">
|
||||||
|
'url': 'http://www.prosieben.de/stars/oscar-award/videos/jetzt-erst-enthuellt-das-geheimnis-von-emma-stones-oscar-robe-clip',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '4895826',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'Jetzt erst enthüllt: Das Geheimnis von Emma Stones Oscar-Robe',
|
||||||
|
'description': 'md5:e5ace2bc43fadf7b63adc6187e9450b9',
|
||||||
|
'upload_date': '20170302',
|
||||||
|
},
|
||||||
|
'params': {
|
||||||
|
'skip_download': True,
|
||||||
|
},
|
||||||
|
'skip': 'geo restricted to Germany',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
# geo restricted to Germany
|
# geo restricted to Germany
|
||||||
'url': 'http://www.kabeleinsdoku.de/tv/mayday-alarm-im-cockpit/video/102-notlandung-im-hudson-river-ganze-folge',
|
'url': 'http://www.kabeleinsdoku.de/tv/mayday-alarm-im-cockpit/video/102-notlandung-im-hudson-river-ganze-folge',
|
||||||
@ -338,6 +353,7 @@ class ProSiebenSat1IE(ProSiebenSat1BaseIE):
|
|||||||
r'<header class="module_header">\s*<h2>([^<]+)</h2>\s*</header>',
|
r'<header class="module_header">\s*<h2>([^<]+)</h2>\s*</header>',
|
||||||
r'<h2 class="video-title" itemprop="name">\s*(.+?)</h2>',
|
r'<h2 class="video-title" itemprop="name">\s*(.+?)</h2>',
|
||||||
r'<div[^>]+id="veeseoTitle"[^>]*>(.+?)</div>',
|
r'<div[^>]+id="veeseoTitle"[^>]*>(.+?)</div>',
|
||||||
|
r'<h2[^>]+class="subtitle"[^>]*>([^<]+)</h2>',
|
||||||
]
|
]
|
||||||
_DESCRIPTION_REGEXES = [
|
_DESCRIPTION_REGEXES = [
|
||||||
r'<p itemprop="description">\s*(.+?)</p>',
|
r'<p itemprop="description">\s*(.+?)</p>',
|
||||||
@ -369,9 +385,9 @@ class ProSiebenSat1IE(ProSiebenSat1BaseIE):
|
|||||||
def _extract_clip(self, url, webpage):
|
def _extract_clip(self, url, webpage):
|
||||||
clip_id = self._html_search_regex(
|
clip_id = self._html_search_regex(
|
||||||
self._CLIPID_REGEXES, webpage, 'clip id')
|
self._CLIPID_REGEXES, webpage, 'clip id')
|
||||||
title = self._html_search_regex(self._TITLE_REGEXES, webpage, 'title', default=None)
|
title = self._html_search_regex(
|
||||||
if title is None:
|
self._TITLE_REGEXES, webpage, 'title',
|
||||||
title = self._og_search_title(webpage)
|
default=None) or self._og_search_title(webpage)
|
||||||
info = self._extract_video_info(url, clip_id)
|
info = self._extract_video_info(url, clip_id)
|
||||||
description = self._html_search_regex(
|
description = self._html_search_regex(
|
||||||
self._DESCRIPTION_REGEXES, webpage, 'description', default=None)
|
self._DESCRIPTION_REGEXES, webpage, 'description', default=None)
|
||||||
|
Loading…
Reference in New Issue
Block a user