]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/vice.py
[extractor] Deprecate `_sort_formats`
[yt-dlp.git] / yt_dlp / extractor / vice.py
CommitLineData
44b434e4 1import functools
b811b4c9
RA
2import hashlib
3import json
86c8cfc5 4import random
44b434e4 5import time
0a477f87 6
b811b4c9 7from .adobepass import AdobePassIE
1fe8fb8c 8from .common import InfoExtractor
44b434e4 9from .youtube import YoutubeIE
86c8cfc5
S
10from ..compat import (
11 compat_HTTPError,
12 compat_str,
13)
b811b4c9 14from ..utils import (
44b434e4 15 clean_html,
86c8cfc5 16 ExtractorError,
b811b4c9 17 int_or_none,
44b434e4 18 OnDemandPagedList,
b811b4c9
RA
19 parse_age_limit,
20 str_or_none,
86c8cfc5 21 try_get,
b811b4c9 22)
1fe8fb8c
JMF
23
24
44b434e4
RA
25class ViceBaseIE(InfoExtractor):
26 def _call_api(self, resource, resource_key, resource_id, locale, fields, args=''):
27 return self._download_json(
28 'https://video.vice.com/api/v1/graphql', resource_id, query={
29 'query': '''{
30 %s(locale: "%s", %s: "%s"%s) {
31 %s
32 }
33}''' % (resource, locale, resource_key, resource_id, args, fields),
34 })['data'][resource]
35
36
37class ViceIE(ViceBaseIE, AdobePassIE):
86c8cfc5 38 IE_NAME = 'vice'
44b434e4 39 _VALID_URL = r'https?://(?:(?:video|vms)\.vice|(?:www\.)?vice(?:land|tv))\.com/(?P<locale>[^/]+)/(?:video/[^/]+|embed)/(?P<id>[\da-f]{24})'
bfd973ec 40 _EMBED_REGEX = [r'<iframe\b[^>]+\bsrc=["\'](?P<url>(?:https?:)?//video\.vice\.com/[^/]+/embed/[\da-f]{24})']
86c8cfc5
S
41 _TESTS = [{
42 'url': 'https://video.vice.com/en_us/video/pet-cremator/58c69e38a55424f1227dc3f7',
43 'info_dict': {
44b434e4 44 'id': '58c69e38a55424f1227dc3f7',
86c8cfc5
S
45 'ext': 'mp4',
46 'title': '10 Questions You Always Wanted To Ask: Pet Cremator',
47 'description': 'md5:fe856caacf61fe0e74fab15ce2b07ca5',
48 'uploader': 'vice',
49 'uploader_id': '57a204088cb727dec794c67b',
50 'timestamp': 1489664942,
51 'upload_date': '20170316',
52 'age_limit': 14,
53 },
54 'params': {
55 # m3u8 download
56 'skip_download': True,
57 },
86c8cfc5
S
58 }, {
59 # geo restricted to US
60 'url': 'https://video.vice.com/en_us/video/the-signal-from-tolva/5816510690b70e6c5fd39a56',
61 'info_dict': {
44b434e4 62 'id': '5816510690b70e6c5fd39a56',
86c8cfc5 63 'ext': 'mp4',
44b434e4 64 'uploader': 'vice',
86c8cfc5
S
65 'title': 'The Signal From Tölva',
66 'description': 'md5:3927e3c79f9e8094606a2b3c5b5e55d5',
44b434e4 67 'uploader_id': '57a204088cb727dec794c67b',
86c8cfc5
S
68 'timestamp': 1477941983,
69 'upload_date': '20161031',
70 },
71 'params': {
72 # m3u8 download
73 'skip_download': True,
74 },
86c8cfc5
S
75 }, {
76 'url': 'https://video.vice.com/alps/video/ulfs-wien-beruchtigste-grafitti-crew-part-1/581b12b60a0e1f4c0fb6ea2f',
77 'info_dict': {
78 'id': '581b12b60a0e1f4c0fb6ea2f',
79 'ext': 'mp4',
80 'title': 'ULFs - Wien berüchtigste Grafitti Crew - Part 1',
44b434e4
RA
81 'description': 'Zwischen Hinterzimmer-Tattoos und U-Bahnschächten erzählen uns die Ulfs, wie es ist, "süchtig nach Sachbeschädigung" zu sein.',
82 'uploader': 'vice',
86c8cfc5
S
83 'uploader_id': '57a204088cb727dec794c67b',
84 'timestamp': 1485368119,
85 'upload_date': '20170125',
86 'age_limit': 14,
87 },
88 'params': {
89 # AES-encrypted m3u8
90 'skip_download': True,
86c8cfc5 91 },
86c8cfc5
S
92 }, {
93 'url': 'https://video.vice.com/en_us/video/pizza-show-trailer/56d8c9a54d286ed92f7f30e4',
94 'only_matching': True,
95 }, {
96 'url': 'https://video.vice.com/en_us/embed/57f41d3556a0a80f54726060',
97 'only_matching': True,
98 }, {
99 'url': 'https://vms.vice.com/en_us/video/preplay/58c69e38a55424f1227dc3f7',
100 'only_matching': True,
101 }, {
102 'url': 'https://www.viceland.com/en_us/video/thursday-march-1-2018/5a8f2d7ff1cdb332dd446ec1',
103 'only_matching': True,
104 }]
86c8cfc5 105
86c8cfc5 106 def _real_extract(self, url):
5ad28e7f 107 locale, video_id = self._match_valid_url(url).groups()
86c8cfc5 108
44b434e4
RA
109 video = self._call_api('videos', 'id', video_id, locale, '''body
110 locked
111 rating
112 thumbnail_url
113 title''')[0]
114 title = video['title'].strip()
86c8cfc5 115 rating = video.get('rating')
b811b4c9
RA
116
117 query = {}
44b434e4 118 if video.get('locked'):
b811b4c9 119 resource = self._get_mvpd_resource(
86c8cfc5 120 'VICELAND', title, video_id, rating)
1d9e0a4f
RA
121 query['tvetoken'] = self._extract_mvpd_auth(
122 url, video_id, 'VICELAND', resource)
b811b4c9
RA
123
124 # signature generation algorithm is reverse engineered from signatureGenerator in
125 # webpack:///../shared/~/vice-player/dist/js/vice-player.js in
126 # https://www.viceland.com/assets/common/js/web.vendor.bundle.js
86c8cfc5
S
127 # new JS is located here https://vice-web-statics-cdn.vice.com/vice-player/player-embed.js
128 exp = int(time.time()) + 1440
129
b811b4c9
RA
130 query.update({
131 'exp': exp,
132 'sign': hashlib.sha512(('%s:GET:%d' % (video_id, exp)).encode()).hexdigest(),
44b434e4 133 'skipadstitching': 1,
86c8cfc5
S
134 'platform': 'desktop',
135 'rn': random.randint(10000, 100000),
b811b4c9
RA
136 })
137
138 try:
1d9e0a4f 139 preplay = self._download_json(
1fcc9166 140 'https://vms.vice.com/%s/video/preplay/%s' % (locale, video_id),
1d9e0a4f 141 video_id, query=query)
b811b4c9 142 except ExtractorError as e:
86c8cfc5 143 if isinstance(e.cause, compat_HTTPError) and e.cause.code in (400, 401):
b811b4c9 144 error = json.loads(e.cause.read().decode())
86c8cfc5 145 error_message = error.get('error_description') or error['details']
1d9e0a4f 146 raise ExtractorError('%s said: %s' % (
86c8cfc5 147 self.IE_NAME, error_message), expected=True)
b811b4c9
RA
148 raise
149
150 video_data = preplay['video']
44b434e4
RA
151 formats = self._extract_m3u8_formats(
152 preplay['playURL'], video_id, 'mp4', 'm3u8_native')
44b434e4
RA
153 episode = video_data.get('episode') or {}
154 channel = video_data.get('channel') or {}
155 season = video_data.get('season') or {}
b811b4c9
RA
156
157 subtitles = {}
44b434e4
RA
158 for subtitle in preplay.get('subtitleURLs', []):
159 cc_url = subtitle.get('url')
160 if not cc_url:
161 continue
162 language_code = try_get(subtitle, lambda x: x['languages'][0]['language_code'], compat_str) or 'en'
163 subtitles.setdefault(language_code, []).append({
b811b4c9 164 'url': cc_url,
44b434e4 165 })
b811b4c9
RA
166
167 return {
44b434e4 168 'formats': formats,
b811b4c9
RA
169 'id': video_id,
170 'title': title,
44b434e4
RA
171 'description': clean_html(video.get('body')),
172 'thumbnail': video.get('thumbnail_url'),
173 'duration': int_or_none(video_data.get('video_duration')),
70bcc444 174 'timestamp': int_or_none(video_data.get('created_at'), 1000),
44b434e4
RA
175 'age_limit': parse_age_limit(video_data.get('video_rating') or rating),
176 'series': try_get(video_data, lambda x: x['show']['base']['display_title'], compat_str),
177 'episode_number': int_or_none(episode.get('episode_number')),
b811b4c9 178 'episode_id': str_or_none(episode.get('id') or video_data.get('episode_id')),
44b434e4
RA
179 'season_number': int_or_none(season.get('season_number')),
180 'season_id': str_or_none(season.get('id') or video_data.get('season_id')),
181 'uploader': channel.get('name'),
b811b4c9
RA
182 'uploader_id': str_or_none(channel.get('id')),
183 'subtitles': subtitles,
b811b4c9
RA
184 }
185
186
44b434e4 187class ViceShowIE(ViceBaseIE):
1d9e0a4f 188 IE_NAME = 'vice:show'
44b434e4
RA
189 _VALID_URL = r'https?://(?:video\.vice|(?:www\.)?vice(?:land|tv))\.com/(?P<locale>[^/]+)/show/(?P<id>[^/?#&]+)'
190 _PAGE_SIZE = 25
191 _TESTS = [{
192 'url': 'https://video.vice.com/en_us/show/fck-thats-delicious',
0a477f87 193 'info_dict': {
44b434e4
RA
194 'id': '57a2040c8cb727dec794c901',
195 'title': 'F*ck, That’s Delicious',
196 'description': 'The life and eating habits of rap’s greatest bon vivant, Action Bronson.',
0a477f87 197 },
44b434e4
RA
198 'playlist_mincount': 64,
199 }, {
200 'url': 'https://www.vicetv.com/en_us/show/fck-thats-delicious',
201 'only_matching': True,
202 }]
0a477f87 203
44b434e4
RA
204 def _fetch_page(self, locale, show_id, page):
205 videos = self._call_api('videos', 'show_id', show_id, locale, '''body
206 id
207 url''', ', page: %d, per_page: %d' % (page + 1, self._PAGE_SIZE))
208 for video in videos:
209 yield self.url_result(
210 video['url'], ViceIE.ie_key(), video.get('id'))
0a477f87 211
44b434e4 212 def _real_extract(self, url):
5ad28e7f 213 locale, display_id = self._match_valid_url(url).groups()
44b434e4
RA
214 show = self._call_api('shows', 'slug', display_id, locale, '''dek
215 id
216 title''')[0]
217 show_id = show['id']
0a477f87 218
44b434e4
RA
219 entries = OnDemandPagedList(
220 functools.partial(self._fetch_page, locale, show_id),
221 self._PAGE_SIZE)
0a477f87 222
44b434e4
RA
223 return self.playlist_result(
224 entries, show_id, show.get('title'), show.get('dek'))
4ac6dc37
YCH
225
226
44b434e4 227class ViceArticleIE(ViceBaseIE):
1d9e0a4f 228 IE_NAME = 'vice:article'
44b434e4 229 _VALID_URL = r'https://(?:www\.)?vice\.com/(?P<locale>[^/]+)/article/(?:[0-9a-z]{6}/)?(?P<id>[^?#]+)'
4ac6dc37
YCH
230
231 _TESTS = [{
232 'url': 'https://www.vice.com/en_us/article/on-set-with-the-woman-making-mormon-porn-in-utah',
233 'info_dict': {
44b434e4 234 'id': '58dc0a3dee202d2a0ccfcbd8',
4ac6dc37 235 'ext': 'mp4',
44b434e4
RA
236 'title': 'Mormon War on Porn',
237 'description': 'md5:1c5d91fe25fa8aa304f9def118b92dbf',
86c8cfc5
S
238 'uploader': 'vice',
239 'uploader_id': '57a204088cb727dec794c67b',
240 'timestamp': 1491883129,
241 'upload_date': '20170411',
242 'age_limit': 17,
4ac6dc37
YCH
243 },
244 'params': {
245 # AES-encrypted m3u8
246 'skip_download': True,
247 },
44b434e4 248 'add_ie': [ViceIE.ie_key()],
4ac6dc37 249 }, {
1d9e0a4f 250 'url': 'https://www.vice.com/en_us/article/how-to-hack-a-car',
44b434e4 251 'md5': '13010ee0bc694ea87ec40724397c2349',
4ac6dc37
YCH
252 'info_dict': {
253 'id': '3jstaBeXgAs',
254 'ext': 'mp4',
255 'title': 'How to Hack a Car: Phreaked Out (Episode 2)',
256 'description': 'md5:ee95453f7ff495db8efe14ae8bf56f30',
4ac6dc37 257 'uploader': 'Motherboard',
86c8cfc5 258 'uploader_id': 'MotherboardTV',
4ac6dc37
YCH
259 'upload_date': '20140529',
260 },
44b434e4 261 'add_ie': [YoutubeIE.ie_key()],
86c8cfc5
S
262 }, {
263 'url': 'https://www.vice.com/en_us/article/znm9dx/karley-sciortino-slutever-reloaded',
264 'md5': 'a7ecf64ee4fa19b916c16f4b56184ae2',
265 'info_dict': {
44b434e4 266 'id': '57f41d3556a0a80f54726060',
86c8cfc5
S
267 'ext': 'mp4',
268 'title': "Making The World's First Male Sex Doll",
44b434e4 269 'description': 'md5:19b00b215b99961cf869c40fbe9df755',
86c8cfc5
S
270 'uploader': 'vice',
271 'uploader_id': '57a204088cb727dec794c67b',
272 'timestamp': 1476919911,
273 'upload_date': '20161019',
274 'age_limit': 17,
275 },
276 'params': {
277 'skip_download': True,
278 },
279 'add_ie': [ViceIE.ie_key()],
1d9e0a4f
RA
280 }, {
281 'url': 'https://www.vice.com/en_us/article/cowboy-capitalists-part-1',
282 'only_matching': True,
283 }, {
284 'url': 'https://www.vice.com/ru/article/big-night-out-ibiza-clive-martin-229',
285 'only_matching': True,
4ac6dc37
YCH
286 }]
287
288 def _real_extract(self, url):
5ad28e7f 289 locale, display_id = self._match_valid_url(url).groups()
4ac6dc37 290
44b434e4
RA
291 article = self._call_api('articles', 'slug', display_id, locale, '''body
292 embed_code''')[0]
293 body = article['body']
1d9e0a4f
RA
294
295 def _url_res(video_url, ie_key):
4ac6dc37
YCH
296 return {
297 '_type': 'url_transparent',
1d9e0a4f 298 'url': video_url,
4ac6dc37 299 'display_id': display_id,
1d9e0a4f 300 'ie_key': ie_key,
4ac6dc37
YCH
301 }
302
44b434e4 303 vice_url = ViceIE._extract_url(body)
86c8cfc5
S
304 if vice_url:
305 return _url_res(vice_url, ViceIE.ie_key())
306
1d9e0a4f
RA
307 embed_code = self._search_regex(
308 r'embedCode=([^&\'"]+)', body,
309 'ooyala embed code', default=None)
310 if embed_code:
311 return _url_res('ooyala:%s' % embed_code, 'Ooyala')
312
5113b691 313 youtube_url = YoutubeIE._extract_url(body)
1d9e0a4f 314 if youtube_url:
5113b691 315 return _url_res(youtube_url, YoutubeIE.ie_key())
1d9e0a4f 316
4ac6dc37 317 video_url = self._html_search_regex(
1d9e0a4f 318 r'data-video-url="([^"]+)"',
44b434e4 319 article['embed_code'], 'video URL')
4ac6dc37 320
1d9e0a4f 321 return _url_res(video_url, ViceIE.ie_key())