[arte:creative] Improve _VALID_URL
authorSergey M․ <dstftw@gmail.com>
Thu, 14 Apr 2016 15:54:41 +0000 (21:54 +0600)
committerSergey M․ <dstftw@gmail.com>
Thu, 14 Apr 2016 15:54:41 +0000 (21:54 +0600)
youtube_dl/extractor/arte.py
youtube_dl/extractor/extractors.py

index 662230a9048a0090e3a44dd44f7f43e6d481efd4..a9e3266dcb138794774e30ad2c0af0dea645463f 100644 (file)
@@ -210,7 +210,7 @@ class ArteTVPlus7IE(InfoExtractor):
 # It also uses the arte_vp_url url from the webpage to extract the information
 class ArteTVCreativeIE(ArteTVPlus7IE):
     IE_NAME = 'arte.tv:creative'
-    _VALID_URL = r'https?://creative\.arte\.tv/(?P<lang>fr|de|en|es)/(?:magazine?/)?(?P<id>[^/?#&]+)'
+    _VALID_URL = r'https?://creative\.arte\.tv/(?P<lang>fr|de|en|es)/(?:[^/]+/)*(?P<id>[^/?#&]+)'
 
     _TESTS = [{
         'url': 'http://creative.arte.tv/de/magazin/agentur-amateur-corporate-design',
@@ -229,6 +229,9 @@ class ArteTVCreativeIE(ArteTVPlus7IE):
             'description': 'Événement ! Quarante-cinq ans après leurs premiers succès, les légendaires Monty Python remontent sur scène.\n',
             'upload_date': '20140805',
         }
+    }, {
+        'url': 'http://creative.arte.tv/de/episode/agentur-amateur-4-der-erste-kunde',
+        'only_matching': True,
     }]
 
 
index 04c6508f190f7810841de3da59889234bbe0d97b..2ae9bc9a8049e19ef454a45da55f5681715bf2c8 100644 (file)
@@ -46,6 +46,7 @@ from .arte import (
     ArteTVPlus7IE,
     ArteTVCreativeIE,
     ArteTVConcertIE,
+    ArteTVInfoIE,
     ArteTVFutureIE,
     ArteTVCinemaIE,
     ArteTVDDCIE,