mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-05 01:44:33 +01:00
[npo] Extend _VALID_URL to support ntr.nl (Closes #6248)
This commit is contained in:
parent
5eb778bf4d
commit
e118031ef8
@ -37,8 +37,9 @@ class NPOBaseIE(InfoExtractor):
|
|||||||
|
|
||||||
|
|
||||||
class NPOIE(NPOBaseIE):
|
class NPOIE(NPOBaseIE):
|
||||||
IE_NAME = 'npo.nl'
|
IE_NAME = 'npo'
|
||||||
_VALID_URL = r'https?://(?:www\.)?npo\.nl/(?!live|radio)[^/]+/[^/]+/(?P<id>[^/?]+)'
|
IE_DESC = 'npo.nl and ntr.nl'
|
||||||
|
_VALID_URL = r'https?://(?:www\.)?(?:npo|ntr)\.nl/(?!live|radio)(?:[^/]+/){2,}(?P<id>[^/?#]+)'
|
||||||
|
|
||||||
_TESTS = [
|
_TESTS = [
|
||||||
{
|
{
|
||||||
@ -100,6 +101,18 @@ class NPOIE(NPOBaseIE):
|
|||||||
'title': 'Hoe gaat Europa verder na Parijs?',
|
'title': 'Hoe gaat Europa verder na Parijs?',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
'url': 'http://www.ntr.nl/Aap-Poot-Pies/27/detail/Aap-poot-pies/VPWON_1233944#content',
|
||||||
|
'md5': '01c6a2841675995da1f0cf776f03a9c3',
|
||||||
|
'info_dict': {
|
||||||
|
'id': 'VPWON_1233944',
|
||||||
|
'ext': 'm4v',
|
||||||
|
'title': 'Aap, poot, pies',
|
||||||
|
'description': 'md5:c9c8005d1869ae65b858e82c01a91fde',
|
||||||
|
'upload_date': '20150508',
|
||||||
|
'duration': 599,
|
||||||
|
},
|
||||||
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
|
Loading…
Reference in New Issue
Block a user