mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[phoenix] Extend _VALID_URL (#5322)
This commit is contained in:
parent
c808ef81bb
commit
edd7344820
@ -5,19 +5,33 @@
|
|||||||
|
|
||||||
|
|
||||||
class PhoenixIE(InfoExtractor):
|
class PhoenixIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?phoenix\.de/content/(?P<id>[0-9]+)'
|
_VALID_URL = r'''(?x)https?://(?:www\.)?phoenix\.de/content/
|
||||||
_TEST = {
|
(?:
|
||||||
'url': 'http://www.phoenix.de/content/884301',
|
phoenix/die_sendungen/(?:[^/]+/)?
|
||||||
'md5': 'ed249f045256150c92e72dbb70eadec6',
|
)?
|
||||||
'info_dict': {
|
(?P<id>[0-9]+)'''
|
||||||
'id': '884301',
|
_TESTS = [
|
||||||
'ext': 'mp4',
|
{
|
||||||
'title': 'Michael Krons mit Hans-Werner Sinn',
|
'url': 'http://www.phoenix.de/content/884301',
|
||||||
'description': 'Im Dialog - Sa. 25.10.14, 00.00 - 00.35 Uhr',
|
'md5': 'ed249f045256150c92e72dbb70eadec6',
|
||||||
'upload_date': '20141025',
|
'info_dict': {
|
||||||
'uploader': 'Im Dialog',
|
'id': '884301',
|
||||||
}
|
'ext': 'mp4',
|
||||||
}
|
'title': 'Michael Krons mit Hans-Werner Sinn',
|
||||||
|
'description': 'Im Dialog - Sa. 25.10.14, 00.00 - 00.35 Uhr',
|
||||||
|
'upload_date': '20141025',
|
||||||
|
'uploader': 'Im Dialog',
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'url': 'http://www.phoenix.de/content/phoenix/die_sendungen/869815',
|
||||||
|
'only_matching': True,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'url': 'http://www.phoenix.de/content/phoenix/die_sendungen/diskussionen/928234',
|
||||||
|
'only_matching': True,
|
||||||
|
},
|
||||||
|
]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
|
Loading…
Reference in New Issue
Block a user