]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/redbulltv.py
[bitchute] Improve page offset
[yt-dlp.git] / youtube_dl / extractor / redbulltv.py
CommitLineData
054a587d
S
1# coding: utf-8
2from __future__ import unicode_literals
3
4from .common import InfoExtractor
ba448445 5from ..compat import compat_HTTPError
054a587d
S
6from ..utils import (
7 float_or_none,
ba448445 8 ExtractorError,
054a587d
S
9)
10
11
12class RedBullTVIE(InfoExtractor):
e2e18694 13 _VALID_URL = r'https?://(?:www\.)?redbull\.tv/video/(?P<id>AP-\w+)'
054a587d
S
14 _TESTS = [{
15 # film
e2e18694 16 'url': 'https://www.redbull.tv/video/AP-1Q6XCDTAN1W11',
ba448445 17 'md5': 'fb0445b98aa4394e504b413d98031d1f',
054a587d 18 'info_dict': {
e2e18694 19 'id': 'AP-1Q6XCDTAN1W11',
054a587d 20 'ext': 'mp4',
e2e18694 21 'title': 'ABC of... WRC - ABC of... S1E6',
054a587d
S
22 'description': 'md5:5c7ed8f4015c8492ecf64b6ab31e7d31',
23 'duration': 1582.04,
054a587d
S
24 },
25 }, {
26 # episode
e2e18694 27 'url': 'https://www.redbull.tv/video/AP-1PMHKJFCW1W11',
054a587d 28 'info_dict': {
e2e18694 29 'id': 'AP-1PMHKJFCW1W11',
054a587d 30 'ext': 'mp4',
e2e18694
RA
31 'title': 'Grime - Hashtags S2E4',
32 'description': 'md5:b5f522b89b72e1e23216e5018810bb25',
054a587d 33 'duration': 904.6,
054a587d 34 },
27449ad8
S
35 'params': {
36 'skip_download': True,
37 },
054a587d
S
38 }]
39
40 def _real_extract(self, url):
41 video_id = self._match_id(url)
42
ba448445 43 session = self._download_json(
e2e18694 44 'https://api.redbull.tv/v3/session', video_id,
054a587d 45 note='Downloading access token', query={
ba448445 46 'category': 'personal_computer',
ba448445
RA
47 'os_family': 'http',
48 })
49 if session.get('code') == 'error':
50 raise ExtractorError('%s said: %s' % (
51 self.IE_NAME, session['message']))
e2e18694 52 token = session['token']
054a587d 53
ba448445 54 try:
e2e18694
RA
55 video = self._download_json(
56 'https://api.redbull.tv/v3/products/' + video_id,
ba448445 57 video_id, note='Downloading video information',
e2e18694 58 headers={'Authorization': token}
ba448445
RA
59 )
60 except ExtractorError as e:
61 if isinstance(e.cause, compat_HTTPError) and e.cause.code == 404:
62 error_message = self._parse_json(
e2e18694 63 e.cause.read().decode(), video_id)['error']
ba448445
RA
64 raise ExtractorError('%s said: %s' % (
65 self.IE_NAME, error_message), expected=True)
66 raise
054a587d 67
e2e18694 68 title = video['title'].strip()
054a587d
S
69
70 formats = self._extract_m3u8_formats(
e2e18694
RA
71 'https://dms.redbull.tv/v3/%s/%s/playlist.m3u8' % (video_id, token),
72 video_id, 'mp4', entry_protocol='m3u8_native', m3u8_id='hls')
ba448445 73 self._sort_formats(formats)
054a587d
S
74
75 subtitles = {}
e2e18694
RA
76 for resource in video.get('resources', []):
77 if resource.startswith('closed_caption_'):
78 splitted_resource = resource.split('_')
79 if splitted_resource[2]:
80 subtitles.setdefault('en', []).append({
81 'url': 'https://resources.redbull.tv/%s/%s' % (video_id, resource),
82 'ext': splitted_resource[2],
83 })
054a587d 84
e2e18694 85 subheading = video.get('subheading')
054a587d
S
86 if subheading:
87 title += ' - %s' % subheading
88
89 return {
90 'id': video_id,
91 'title': title,
e2e18694 92 'description': video.get('long_description') or video.get(
054a587d
S
93 'short_description'),
94 'duration': float_or_none(video.get('duration'), scale=1000),
054a587d
S
95 'formats': formats,
96 'subtitles': subtitles,
97 }