|
|
|
@ -180,7 +180,7 @@ class ArteTVBaseIE(InfoExtractor):
|
|
|
|
|
|
|
|
|
|
class ArteTVPlus7IE(ArteTVBaseIE):
|
|
|
|
|
IE_NAME = 'arte.tv:+7'
|
|
|
|
|
_VALID_URL = r'https?://(?:(?:www|sites)\.)?arte\.tv/[^/]+/(?P<lang>fr|de|en|es)/(?:[^/]+/)*(?P<id>[^/?#&]+)'
|
|
|
|
|
_VALID_URL = r'https?://(?:(?:www|sites)\.)?arte\.tv/(?:[^/]+/)?(?P<lang>fr|de|en|es)/(?:videos/)?(?:[^/]+/)*(?P<id>[^/?#&]+)'
|
|
|
|
|
|
|
|
|
|
_TESTS = [{
|
|
|
|
|
'url': 'http://www.arte.tv/guide/de/sendungen/XEN/xenius/?vid=055918-015_PLUS7-D',
|
|
|
|
@ -188,6 +188,9 @@ class ArteTVPlus7IE(ArteTVBaseIE):
|
|
|
|
|
}, {
|
|
|
|
|
'url': 'http://sites.arte.tv/karambolage/de/video/karambolage-22',
|
|
|
|
|
'only_matching': True,
|
|
|
|
|
}, {
|
|
|
|
|
'url': 'http://www.arte.tv/de/videos/048696-000-A/der-kluge-bauch-unser-zweites-gehirn',
|
|
|
|
|
'only_matching': True,
|
|
|
|
|
}]
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|