]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/voxmedia.py
[extractor] Support multiple archive ids for one video (#4307)
[yt-dlp.git] / yt_dlp / extractor / voxmedia.py
CommitLineData
83699427 1from .common import InfoExtractor
9e38dbb1 2from .once import OnceIE
83699427 3from ..compat import compat_urllib_parse_unquote
e4d53148
RA
4from ..utils import (
5 ExtractorError,
6 int_or_none,
10db0d2f 7 try_get,
8 unified_timestamp,
e4d53148 9)
9e38dbb1
RA
10
11
12class VoxMediaVolumeIE(OnceIE):
13 _VALID_URL = r'https?://volume\.vox-cdn\.com/embed/(?P<id>[0-9a-f]{9})'
14
15 def _real_extract(self, url):
16 video_id = self._match_id(url)
17 webpage = self._download_webpage(url, video_id)
e4d53148
RA
18
19 setup = self._parse_json(self._search_regex(
20 r'setup\s*=\s*({.+});', webpage, 'setup'), video_id)
10db0d2f 21 player_setup = setup.get('player_setup') or setup
22 video_data = player_setup.get('video') or {}
23 formatted_metadata = video_data.get('formatted_metadata') or {}
e4d53148
RA
24 info = {
25 'id': video_id,
10db0d2f 26 'title': player_setup.get('title') or video_data.get('title_short'),
e4d53148 27 'description': video_data.get('description_long') or video_data.get('description_short'),
10db0d2f 28 'thumbnail': formatted_metadata.get('thumbnail') or video_data.get('brightcove_thumbnail'),
29 'timestamp': unified_timestamp(formatted_metadata.get('video_publish_date')),
e4d53148 30 }
10db0d2f 31 asset = try_get(setup, lambda x: x['embed_assets']['chorus'], dict) or {}
e4d53148
RA
32
33 formats = []
34 hls_url = asset.get('hls_url')
35 if hls_url:
36 formats.extend(self._extract_m3u8_formats(
37 hls_url, video_id, 'mp4', 'm3u8_native', m3u8_id='hls', fatal=False))
38 mp4_url = asset.get('mp4_url')
39 if mp4_url:
40 tbr = self._search_regex(r'-(\d+)k\.', mp4_url, 'bitrate', default=None)
41 format_id = 'http'
42 if tbr:
43 format_id += '-' + tbr
44 formats.append({
45 'format_id': format_id,
46 'url': mp4_url,
47 'tbr': int_or_none(tbr),
48 })
49 if formats:
50 self._sort_formats(formats)
51 info['formats'] = formats
10db0d2f 52 info['duration'] = int_or_none(asset.get('duration'))
e4d53148
RA
53 return info
54
9e38dbb1
RA
55 for provider_video_type in ('ooyala', 'youtube', 'brightcove'):
56 provider_video_id = video_data.get('%s_id' % provider_video_type)
57 if not provider_video_id:
58 continue
9e38dbb1
RA
59 if provider_video_type == 'brightcove':
60 info['formats'] = self._extract_once_formats(provider_video_id)
61 self._sort_formats(info['formats'])
62 else:
63 info.update({
64 '_type': 'url_transparent',
65 'url': provider_video_id if provider_video_type == 'youtube' else '%s:%s' % (provider_video_type, provider_video_id),
66 'ie_key': provider_video_type.capitalize(),
67 })
68 return info
69 raise ExtractorError('Unable to find provider video id')
83699427 70
71
72class VoxMediaIE(InfoExtractor):
e4d53148 73 _VALID_URL = r'https?://(?:www\.)?(?:(?:theverge|vox|sbnation|eater|polygon|curbed|racked|funnyordie)\.com|recode\.net)/(?:[^/]+/)*(?P<id>[^/?]+)'
83699427 74 _TESTS = [{
e4d53148 75 # Volume embed, Youtube
83699427 76 'url': 'http://www.theverge.com/2014/6/27/5849272/material-world-how-google-discovered-what-software-is-made-of',
83699427 77 'info_dict': {
e4d53148 78 'id': 'j4mLW6x17VM',
83699427 79 'ext': 'mp4',
e4d53148
RA
80 'title': 'Material world: how Google discovered what software is made of',
81 'description': 'md5:dfc17e7715e3b542d66e33a109861382',
82 'upload_date': '20190710',
83 'uploader_id': 'TheVerge',
84 'uploader': 'The Verge',
2342733f 85 },
e4d53148 86 'add_ie': ['Youtube'],
83699427 87 }, {
e4d53148 88 # Volume embed, Youtube
83699427 89 'url': 'http://www.theverge.com/2014/10/21/7025853/google-nexus-6-hands-on-photos-video-android-phablet',
10db0d2f 90 'md5': 'fd19aa0cf3a0eea515d4fd5c8c0e9d68',
83699427 91 'info_dict': {
e4d53148 92 'id': 'Gy8Md3Eky38',
83699427 93 'ext': 'mp4',
94 'title': 'The Nexus 6: hands-on with Google\'s phablet',
e4d53148
RA
95 'description': 'md5:d9f0216e5fb932dd2033d6db37ac3f1d',
96 'uploader_id': 'TheVerge',
97 'upload_date': '20141021',
98 'uploader': 'The Verge',
10db0d2f 99 'timestamp': 1413907200,
277c7465 100 },
e4d53148
RA
101 'add_ie': ['Youtube'],
102 'skip': 'similar to the previous test',
83699427 103 }, {
e4d53148 104 # Volume embed, Youtube
83699427 105 'url': 'http://www.vox.com/2016/3/31/11336640/mississippi-lgbt-religious-freedom-bill',
83699427 106 'info_dict': {
10db0d2f 107 'id': '22986359b',
83699427 108 'ext': 'mp4',
e4d53148
RA
109 'title': "Mississippi's laws are so bad that its anti-LGBTQ law isn't needed to allow discrimination",
110 'description': 'md5:fc1317922057de31cd74bce91eb1c66c',
e4d53148 111 'upload_date': '20150915',
10db0d2f 112 'timestamp': 1442332800,
113 'duration': 285,
2342733f 114 },
e4d53148
RA
115 'add_ie': ['Youtube'],
116 'skip': 'similar to the previous test',
83699427 117 }, {
118 # youtube embed
119 'url': 'http://www.vox.com/2016/3/24/11291692/robot-dance',
120 'md5': '83b3080489fb103941e549352d3e0977',
121 'info_dict': {
122 'id': 'FcNHTJU1ufM',
123 'ext': 'mp4',
124 'title': 'How "the robot" became the greatest novelty dance of all time',
125 'description': 'md5:b081c0d588b8b2085870cda55e6da176',
126 'upload_date': '20160324',
127 'uploader_id': 'voxdotcom',
128 'uploader': 'Vox',
277c7465 129 },
130 'add_ie': ['Youtube'],
e4d53148 131 'skip': 'Page no longer contain videos',
961fc024 132 }, {
133 # SBN.VideoLinkset.entryGroup multiple ooyala embeds
134 'url': 'http://www.sbnation.com/college-football-recruiting/2015/2/3/7970291/national-signing-day-rationalizations-itll-be-ok-itll-be-ok',
135 'info_dict': {
136 'id': 'national-signing-day-rationalizations-itll-be-ok-itll-be-ok',
137 'title': '25 lies you will tell yourself on National Signing Day',
138 'description': 'It\'s the most self-delusional time of the year, and everyone\'s gonna tell the same lies together!',
139 },
140 'playlist': [{
141 'md5': '721fededf2ab74ae4176c8c8cbfe092e',
142 'info_dict': {
143 'id': 'p3cThlMjE61VDi_SD9JlIteSNPWVDBB9',
144 'ext': 'mp4',
145 'title': 'Buddy Hield vs Steph Curry (and the world)',
146 'description': 'Let’s dissect only the most important Final Four storylines.',
147 },
148 }, {
149 'md5': 'bf0c5cc115636af028be1bab79217ea9',
150 'info_dict': {
151 'id': 'BmbmVjMjE6esPHxdALGubTrouQ0jYLHj',
152 'ext': 'mp4',
153 'title': 'Chasing Cinderella 2016: Syracuse basketball',
154 'description': 'md5:e02d56b026d51aa32c010676765a690d',
155 },
156 }],
e4d53148 157 'skip': 'Page no longer contain videos',
9e38dbb1
RA
158 }, {
159 # volume embed, Brightcove Once
160 'url': 'https://www.recode.net/2014/6/17/11628066/post-post-pc-ceo-the-full-code-conference-video-of-microsofts-satya',
e4d53148 161 'md5': '2dbc77b8b0bff1894c2fce16eded637d',
9e38dbb1
RA
162 'info_dict': {
163 'id': '1231c973d',
164 'ext': 'mp4',
165 'title': 'Post-Post-PC CEO: The Full Code Conference Video of Microsoft\'s Satya Nadella',
166 'description': 'The longtime veteran was chosen earlier this year as the software giant\'s third leader in its history.',
10db0d2f 167 'timestamp': 1402938000,
168 'upload_date': '20140616',
169 'duration': 4114,
9e38dbb1
RA
170 },
171 'add_ie': ['VoxMediaVolume'],
83699427 172 }]
173
174 def _real_extract(self, url):
175 display_id = self._match_id(url)
176 webpage = compat_urllib_parse_unquote(self._download_webpage(url, display_id))
177
961fc024 178 def create_entry(provider_video_id, provider_video_type, title=None, description=None):
9e38dbb1
RA
179 video_url = {
180 'youtube': '%s',
181 'ooyala': 'ooyala:%s',
182 'volume': 'http://volume.vox-cdn.com/embed/%s',
183 }[provider_video_type] % provider_video_id
961fc024 184 return {
185 '_type': 'url_transparent',
9e38dbb1 186 'url': video_url,
961fc024 187 'title': title or self._og_search_title(webpage),
188 'description': description or self._og_search_description(webpage),
189 }
83699427 190
961fc024 191 entries = []
192 entries_data = self._search_regex([
193 r'Chorus\.VideoContext\.addVideo\((\[{.+}\])\);',
194 r'var\s+entry\s*=\s*({.+});',
195 r'SBN\.VideoLinkset\.entryGroup\(\s*(\[.+\])',
83699427 196 ], webpage, 'video data', default=None)
961fc024 197 if entries_data:
198 entries_data = self._parse_json(entries_data, display_id)
199 if isinstance(entries_data, dict):
200 entries_data = [entries_data]
201 for video_data in entries_data:
202 provider_video_id = video_data.get('provider_video_id')
203 provider_video_type = video_data.get('provider_video_type')
204 if provider_video_id and provider_video_type:
205 entries.append(create_entry(
206 provider_video_id, provider_video_type,
207 video_data.get('title'), video_data.get('description')))
83699427 208
961fc024 209 provider_video_id = self._search_regex(
210 r'data-ooyala-id="([^"]+)"', webpage, 'ooyala id', default=None)
211 if provider_video_id:
212 entries.append(create_entry(provider_video_id, 'ooyala'))
83699427 213
961fc024 214 volume_uuid = self._search_regex(
215 r'data-volume-uuid="([^"]+)"', webpage, 'volume uuid', default=None)
216 if volume_uuid:
9e38dbb1 217 entries.append(create_entry(volume_uuid, 'volume'))
961fc024 218
219 if len(entries) == 1:
220 return entries[0]
221 else:
222 return self.playlist_result(entries, display_id, self._og_search_title(webpage), self._og_search_description(webpage))