[nationalgeographic] Relax _VALID_URL
authorRemita Amine <remitamine@gmail.com>
Wed, 31 Jan 2018 08:18:48 +0000 (09:18 +0100)
committerRemita Amine <remitamine@gmail.com>
Wed, 31 Jan 2018 08:19:11 +0000 (09:19 +0100)
youtube_dl/extractor/nationalgeographic.py

index 9e8d28f4848165ccdfda771800031e6c68359684..246f6795a131908bf62c2b8c1477a7bc327afce5 100644 (file)
@@ -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,
         }
     ]