diff options
author | Remita Amine <remitamine@gmail.com> | 2020-11-20 10:47:52 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2020-11-20 10:47:52 +0100 |
commit | 86f2fa1590991fffae7b1daacae9164771312c0b (patch) | |
tree | 707b63d5fc1154374680b55ae1f35b3cf138bacb | |
parent | 7bc7fbce239da880f7ab67fc5be55ea82df64e20 (diff) |
[discoverynetworks] add support new TLC/DMAX URLs(closes #27100)
-rw-r--r-- | youtube_dl/extractor/discoverynetworks.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/discoverynetworks.py b/youtube_dl/extractor/discoverynetworks.py index 607a54948..c512b95d0 100644 --- a/youtube_dl/extractor/discoverynetworks.py +++ b/youtube_dl/extractor/discoverynetworks.py @@ -7,7 +7,7 @@ from .dplay import DPlayIE class DiscoveryNetworksDeIE(DPlayIE): - _VALID_URL = r'https?://(?:www\.)?(?P<domain>(?:tlc|dmax)\.de|dplay\.co\.uk)/(?:programme|show)/(?P<programme>[^/]+)/video/(?P<alternate_id>[^/]+)' + _VALID_URL = r'https?://(?:www\.)?(?P<domain>(?:tlc|dmax)\.de|dplay\.co\.uk)/(?:programme|show|sendungen)/(?P<programme>[^/]+)/(?:video/)?(?P<alternate_id>[^/]+)' _TESTS = [{ 'url': 'https://www.tlc.de/programme/breaking-amish/video/die-welt-da-drauen/DCB331270001100', @@ -29,6 +29,9 @@ class DiscoveryNetworksDeIE(DPlayIE): }, { 'url': 'https://www.dplay.co.uk/show/ghost-adventures/video/hotel-leger-103620/EHD_280313B', 'only_matching': True, + }, { + 'url': 'https://tlc.de/sendungen/breaking-amish/die-welt-da-drauen/', + 'only_matching': True, }] def _real_extract(self, url): |