aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-08-24 02:57:31 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-08-24 02:57:32 +0200
commit01d906ffe9a9f3a8d9e01b1ee39b3cfcc8f2dfc2 (patch)
tree571fc2b404d0330d2365a52828137474a697e4b8
parent614582bcc47d843bfdfa59e069d56cf4e7c44f24 (diff)
downloadyoutube-dl-01d906ffe9a9f3a8d9e01b1ee39b3cfcc8f2dfc2.tar.xz
[arte:creative] Support more URLs (fixes #3572)
-rw-r--r--youtube_dl/extractor/arte.py18
1 files changed, 13 insertions, 5 deletions
diff --git a/youtube_dl/extractor/arte.py b/youtube_dl/extractor/arte.py
index d86dbba8e..b5e464a30 100644
--- a/youtube_dl/extractor/arte.py
+++ b/youtube_dl/extractor/arte.py
@@ -177,16 +177,24 @@ 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)/magazine?/(?P<id>.+)'
+ _VALID_URL = r'https?://creative\.arte\.tv/(?P<lang>fr|de)/(?:magazine?/)?(?P<id>[^?#]+)'
- _TEST = {
+ _TESTS = [{
'url': 'http://creative.arte.tv/de/magazin/agentur-amateur-corporate-design',
'info_dict': {
- 'id': '050489-002',
+ 'id': '72176',
'ext': 'mp4',
- 'title': 'Agentur Amateur / Agence Amateur #2 : Corporate Design',
+ 'title': 'Folge 2 - Corporate Design',
+ 'upload_date': '20131004',
},
- }
+ }, {
+ 'url': 'http://creative.arte.tv/fr/Monty-Python-Reunion',
+ 'info_dict': {
+ 'id': '160676',
+ 'ext': 'mp4',
+ 'title': 'Monty Python live (mostly)',
+ }
+ }]
class ArteTVFutureIE(ArteTVPlus7IE):