diff options
author | Remita Amine <remitamine@gmail.com> | 2018-01-31 09:18:48 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2018-01-31 09:19:11 +0100 |
commit | ecc218ab1410694bf7ca1df4aca63e9efee37525 (patch) | |
tree | 802d66ff7a57a778728a984219e31deff18f2732 | |
parent | d6b152915cca2e249d72a816dee6a958e4cd5843 (diff) |
[nationalgeographic] Relax _VALID_URL
-rw-r--r-- | youtube_dl/extractor/nationalgeographic.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dl/extractor/nationalgeographic.py b/youtube_dl/extractor/nationalgeographic.py index 9e8d28f48..246f6795a 100644 --- a/youtube_dl/extractor/nationalgeographic.py +++ b/youtube_dl/extractor/nationalgeographic.py @@ -68,7 +68,7 @@ class NationalGeographicVideoIE(InfoExtractor): class NationalGeographicIE(ThePlatformIE, AdobePassIE): IE_NAME = 'natgeo' - _VALID_URL = r'https?://channel\.nationalgeographic\.com/(?:wild/)?[^/]+/(?:videos|episodes)/(?P<id>[^/?]+)' + _VALID_URL = r'https?://channel\.nationalgeographic\.com/(?:(?:wild/)?[^/]+/)?(?:videos|episodes)/(?P<id>[^/?]+)' _TESTS = [ { @@ -102,6 +102,10 @@ class NationalGeographicIE(ThePlatformIE, AdobePassIE): { 'url': 'http://channel.nationalgeographic.com/the-story-of-god-with-morgan-freeman/episodes/the-power-of-miracles/', 'only_matching': True, + }, + { + 'url': 'http://channel.nationalgeographic.com/videos/treasures-rediscovered/', + 'only_matching': True, } ] |