Sergey M․
5 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
7 additions and
1 deletions
-
youtube_dl/extractor/redbulltv.py
|
|
@ -10,7 +10,7 @@ from ..utils import ( |
|
|
|
|
|
|
|
|
|
|
|
class RedBullTVIE(InfoExtractor): |
|
|
|
_VALID_URL = r'https?://(?:www\.)?redbull(?:\.tv|\.com/(?:[^/]+/)?tv)/video/(?P<id>AP-\w+)' |
|
|
|
_VALID_URL = r'https?://(?:www\.)?redbull(?:\.tv|\.com(?:/[^/]+)?(?:/tv)?)(?:/events/[^/]+)?/(?:videos?|live)/(?P<id>AP-\w+)' |
|
|
|
_TESTS = [{ |
|
|
|
# film |
|
|
|
'url': 'https://www.redbull.tv/video/AP-1Q6XCDTAN1W11', |
|
|
@ -38,6 +38,12 @@ class RedBullTVIE(InfoExtractor): |
|
|
|
}, { |
|
|
|
'url': 'https://www.redbull.com/int-en/tv/video/AP-1UWHCAR9S1W11/rob-meets-sam-gaze?playlist=playlists::3f81040a-2f31-4832-8e2e-545b1d39d173', |
|
|
|
'only_matching': True, |
|
|
|
}, { |
|
|
|
'url': 'https://www.redbull.com/us-en/videos/AP-1YM9QCYE52111', |
|
|
|
'only_matching': True, |
|
|
|
}, { |
|
|
|
'url': 'https://www.redbull.com/us-en/events/AP-1XV2K61Q51W11/live/AP-1XUJ86FDH1W11', |
|
|
|
'only_matching': True, |
|
|
|
}] |
|
|
|
|
|
|
|
def _real_extract(self, url): |
|
|
|