]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/yahoo.py
[extractors] Use new framework for existing embeds (#4307)
[yt-dlp.git] / yt_dlp / extractor / yahoo.py
CommitLineData
608b8a43 1import hashlib
934858ad 2import itertools
ac668111 3import urllib.parse
d6039175 4
ac668111 5from .brightcove import BrightcoveNewIE
934858ad 6from .common import InfoExtractor, SearchInfoExtractor
ac668111 7from .youtube import YoutubeIE
1cc79574 8from ..utils import (
2468a6fa 9 ExtractorError,
ac668111 10 clean_html,
7217e148 11 int_or_none,
ecee5724 12 mimetype2ext,
45f4a433 13 parse_iso8601,
c8da40d8 14 smuggle_url,
565a4c59 15 traverse_obj,
608b8a43 16 try_get,
608b8a43 17 url_or_none,
d6039175
PH
18)
19
9c15e9de 20
d6039175 21class YahooIE(InfoExtractor):
a4eb9578 22 IE_DESC = 'Yahoo screen and movies'
3cf70bf1 23 _VALID_URL = r'(?P<url>https?://(?:(?P<country>[a-zA-Z]{2}(?:-[a-zA-Z]{2})?|malaysia)\.)?(?:[\da-zA-Z_-]+\.)?yahoo\.com/(?:[^/]+/)*(?P<id>[^?&#]*-[0-9]+(?:-[a-z]+)?)\.html)'
bfd973ec 24 _EMBED_REGEX = [r'<iframe[^>]+?src=(["\'])(?P<url>https?://(?:screen|movies)\.yahoo\.com/.+?\.html\?format=embed)\1']
25
45f4a433
RA
26 _TESTS = [{
27 'url': 'http://screen.yahoo.com/julian-smith-travis-legg-watch-214727115.html',
28 'info_dict': {
29 'id': '2d25e626-2378-391f-ada0-ddaf1417e588',
30 'ext': 'mp4',
31 'title': 'Julian Smith & Travis Legg Watch Julian Smith',
32 'description': 'Julian and Travis watch Julian Smith',
33 'duration': 6863,
34 'timestamp': 1369812016,
35 'upload_date': '20130529',
9c15e9de 36 },
412cce82 37 'skip': 'No longer exists',
45f4a433
RA
38 }, {
39 'url': 'https://screen.yahoo.com/community/community-sizzle-reel-203225340.html?format=embed',
40 'md5': '7993e572fac98e044588d0b5260f4352',
41 'info_dict': {
42 'id': '4fe78544-8d48-39d8-97cd-13f205d9fcdb',
43 'ext': 'mp4',
44 'title': "Yahoo Saves 'Community'",
45 'description': 'md5:4d4145af2fd3de00cbb6c1d664105053',
46 'duration': 170,
47 'timestamp': 1406838636,
48 'upload_date': '20140731',
6f5ac90c 49 },
412cce82 50 'skip': 'Unfortunately, this video is not available in your region',
45f4a433
RA
51 }, {
52 'url': 'https://uk.screen.yahoo.com/editor-picks/cute-raccoon-freed-drain-using-091756545.html',
8040a0d3 53 'md5': '71298482f7c64cbb7fa064e4553ff1c1',
45f4a433
RA
54 'info_dict': {
55 'id': 'b3affa53-2e14-3590-852b-0e0db6cd1a58',
8040a0d3 56 'ext': 'webm',
45f4a433
RA
57 'title': 'Cute Raccoon Freed From Drain\u00a0Using Angle Grinder',
58 'description': 'md5:f66c890e1490f4910a9953c941dee944',
59 'duration': 97,
60 'timestamp': 1414489862,
61 'upload_date': '20141028',
412cce82
L
62 },
63 'skip': 'No longer exists',
45f4a433
RA
64 }, {
65 'url': 'http://news.yahoo.com/video/china-moses-crazy-blues-104538833.html',
66 'md5': '88e209b417f173d86186bef6e4d1f160',
67 'info_dict': {
68 'id': 'f885cf7f-43d4-3450-9fac-46ac30ece521',
69 'ext': 'mp4',
70 'title': 'China Moses Is Crazy About the Blues',
71 'description': 'md5:9900ab8cd5808175c7b3fe55b979bed0',
72 'duration': 128,
73 'timestamp': 1385722202,
74 'upload_date': '20131129',
75 }
76 }, {
77 'url': 'https://www.yahoo.com/movies/v/true-story-trailer-173000497.html',
78 'md5': '2a9752f74cb898af5d1083ea9f661b58',
79 'info_dict': {
80 'id': '071c4013-ce30-3a93-a5b2-e0413cd4a9d1',
81 'ext': 'mp4',
82 'title': '\'True Story\' Trailer',
83 'description': 'True Story',
84 'duration': 150,
85 'timestamp': 1418919206,
86 'upload_date': '20141218',
762958d5 87 },
45f4a433
RA
88 }, {
89 'url': 'https://gma.yahoo.com/pizza-delivery-man-surprised-huge-tip-college-kids-195200785.html',
90 'only_matching': True,
91 }, {
92 'note': 'NBC Sports embeds',
93 'url': 'http://sports.yahoo.com/blogs/ncaab-the-dagger/tyler-kalinoski-s-buzzer-beater-caps-davidson-s-comeback-win-185609842.html?guid=nbc_cbk_davidsonbuzzerbeater_150313',
94 'info_dict': {
95 'id': '9CsDKds0kvHI',
96 'ext': 'flv',
97 'description': 'md5:df390f70a9ba7c95ff1daace988f0d8d',
98 'title': 'Tyler Kalinoski hits buzzer-beater to lift Davidson',
99 'upload_date': '20150313',
100 'uploader': 'NBCU-SPORTS',
101 'timestamp': 1426270238,
762958d5 102 },
45f4a433
RA
103 }, {
104 'url': 'https://tw.news.yahoo.com/-100120367.html',
105 'only_matching': True,
106 }, {
107 # Query result is embedded in webpage, but explicit request to video API fails with geo restriction
108 'url': 'https://screen.yahoo.com/community/communitary-community-episode-1-ladders-154501237.html',
109 'md5': '4fbafb9c9b6f07aa8f870629f6671b35',
110 'info_dict': {
111 'id': '1f32853c-a271-3eef-8cb6-f6d6872cb504',
112 'ext': 'mp4',
113 'title': 'Communitary - Community Episode 1: Ladders',
114 'description': 'md5:8fc39608213295748e1e289807838c97',
115 'duration': 1646,
116 'timestamp': 1440436550,
117 'upload_date': '20150824',
118 'series': 'Communitary',
119 'season_number': 6,
120 'episode_number': 1,
49807b4a 121 },
412cce82 122 'skip': 'No longer exists',
45f4a433
RA
123 }, {
124 # ytwnews://cavideo/
125 'url': 'https://tw.video.yahoo.com/movie-tw/單車天使-中文版預-092316541.html',
126 'info_dict': {
127 'id': 'ba133ff2-0793-3510-b636-59dfe9ff6cff',
128 'ext': 'mp4',
129 'title': '單車天使 - 中文版預',
130 'description': '中文版預',
131 'timestamp': 1476696196,
132 'upload_date': '20161017',
ca227c86 133 },
45f4a433
RA
134 'params': {
135 'skip_download': True,
2a7c3883 136 },
45f4a433
RA
137 }, {
138 # Contains both a Yahoo hosted video and multiple Youtube embeds
139 'url': 'https://www.yahoo.com/entertainment/gwen-stefani-reveals-the-pop-hit-she-passed-on-assigns-it-to-her-voice-contestant-instead-033045672.html',
140 'info_dict': {
141 'id': '46c5d95a-528f-3d03-b732-732fcadd51de',
142 'title': 'Gwen Stefani reveals the pop hit she passed on, assigns it to her \'Voice\' contestant instead',
143 'description': 'Gwen decided not to record this hit herself, but she decided it was the perfect fit for Kyndall Inskeep.',
b61cd518 144 },
45f4a433 145 'playlist': [{
f420902a 146 'info_dict': {
45f4a433 147 'id': '966d4262-4fd1-3aaa-b45b-049ca6e38ba6',
f420902a 148 'ext': 'mp4',
45f4a433
RA
149 'title': 'Gwen Stefani reveals she turned down one of Sia\'s best songs',
150 'description': 'On "The Voice" Tuesday, Gwen Stefani told Taylor Swift which Sia hit was almost hers.',
151 'timestamp': 1572406500,
152 'upload_date': '20191030',
f420902a 153 },
45f4a433 154 }, {
eb9a15be 155 'info_dict': {
45f4a433 156 'id': '352CFDOQrKg',
eb9a15be 157 'ext': 'mp4',
45f4a433 158 'title': 'Kyndal Inskeep "Performs the Hell Out of" Sia\'s "Elastic Heart" - The Voice Knockouts 2019',
412cce82 159 'description': 'md5:7fe8e3d5806f96002e55f190d1d94479',
45f4a433
RA
160 'uploader': 'The Voice',
161 'uploader_id': 'NBCTheVoice',
162 'upload_date': '20191029',
eb9a15be 163 },
45f4a433
RA
164 }],
165 'params': {
166 'playlistend': 2,
c8da40d8 167 },
412cce82 168 'expected_warnings': ['HTTP Error 404', 'Ignoring subtitle tracks'],
45f4a433
RA
169 }, {
170 'url': 'https://malaysia.news.yahoo.com/video/bystanders-help-ontario-policeman-bust-190932818.html',
171 'only_matching': True,
172 }, {
173 'url': 'https://es-us.noticias.yahoo.com/es-la-puerta-irrompible-que-110539379.html',
174 'only_matching': True,
237513e8
RA
175 }, {
176 'url': 'https://www.yahoo.com/entertainment/v/longtime-cbs-news-60-minutes-032036500-cbs.html',
177 'only_matching': True,
45f4a433 178 }]
d6039175 179
a820dc72 180 def _extract_yahoo_video(self, video_id, country):
45f4a433 181 video = self._download_json(
a820dc72 182 'https://%s.yahoo.com/_td/api/resource/VideoService.videos;view=full;video_ids=["%s"]' % (country, video_id),
45f4a433
RA
183 video_id, 'Downloading video JSON metadata')[0]
184 title = video['title']
befd88b7 185
45f4a433
RA
186 if country == 'malaysia':
187 country = 'my'
3c06d371 188
45f4a433 189 is_live = video.get('live_state') == 'live'
8040a0d3 190 fmts = ('m3u8',) if is_live else ('webm', 'mp4')
9c15e9de 191
45f4a433 192 urls = []
9c15e9de 193 formats = []
45f4a433
RA
194 subtitles = {}
195 for fmt in fmts:
196 media_obj = self._download_json(
197 'https://video-api.yql.yahoo.com/v1/video/sapi/streams/' + video_id,
198 video_id, 'Downloading %s JSON metadata' % fmt,
199 headers=self.geo_verification_headers(), query={
200 'format': fmt,
201 'region': country.upper(),
202 })['query']['results']['mediaObj'][0]
203 msg = media_obj.get('status', {}).get('msg')
9c15e9de 204
45f4a433
RA
205 for s in media_obj.get('streams', []):
206 host = s.get('host')
207 path = s.get('path')
208 if not host or not path:
209 continue
210 s_url = host + path
211 if s.get('format') == 'm3u8':
212 formats.extend(self._extract_m3u8_formats(
213 s_url, video_id, 'mp4', m3u8_id='hls', fatal=False))
214 continue
215 tbr = int_or_none(s.get('bitrate'))
216 formats.append({
217 'url': s_url,
218 'format_id': fmt + ('-%d' % tbr if tbr else ''),
219 'width': int_or_none(s.get('width')),
220 'height': int_or_none(s.get('height')),
221 'tbr': tbr,
222 'fps': int_or_none(s.get('framerate')),
9c15e9de 223 })
ecee5724 224
45f4a433
RA
225 for cc in media_obj.get('closedcaptions', []):
226 cc_url = cc.get('url')
227 if not cc_url or cc_url in urls:
228 continue
229 urls.append(cc_url)
230 subtitles.setdefault(cc.get('lang') or 'en-US', []).append({
231 'url': cc_url,
232 'ext': mimetype2ext(cc.get('content_type')),
ecee5724
YCH
233 })
234
45f4a433
RA
235 streaming_url = video.get('streaming_url')
236 if streaming_url and not is_live:
237 formats.extend(self._extract_m3u8_formats(
238 streaming_url, video_id, 'mp4',
239 'm3u8_native', m3u8_id='hls', fatal=False))
240
241 if not formats and msg == 'geo restricted':
b7da73eb 242 self.raise_geo_restricted(metadata_available=True)
45f4a433
RA
243
244 self._sort_formats(formats)
245
246 thumbnails = []
247 for thumb in video.get('thumbnails', []):
248 thumb_url = thumb.get('url')
249 if not thumb_url:
250 continue
251 thumbnails.append({
252 'id': thumb.get('tag'),
253 'url': thumb.get('url'),
254 'width': int_or_none(thumb.get('width')),
255 'height': int_or_none(thumb.get('height')),
256 })
257
258 series_info = video.get('series_info') or {}
259
35907e23 260 return {
9c15e9de 261 'id': video_id,
39ca3b5c 262 'title': title,
9c15e9de 263 'formats': formats,
45f4a433
RA
264 'thumbnails': thumbnails,
265 'description': clean_html(video.get('description')),
266 'timestamp': parse_iso8601(video.get('publish_time')),
ecee5724 267 'subtitles': subtitles,
45f4a433
RA
268 'duration': int_or_none(video.get('duration')),
269 'view_count': int_or_none(video.get('view_count')),
270 'is_live': is_live,
271 'series': video.get('show_name'),
272 'season_number': int_or_none(series_info.get('season_number')),
273 'episode_number': int_or_none(series_info.get('episode_number')),
9c15e9de 274 }
d6039175 275
a820dc72 276 def _real_extract(self, url):
5ad28e7f 277 url, country, display_id = self._match_valid_url(url).groups()
a820dc72
RA
278 if not country:
279 country = 'us'
280 else:
281 country = country.split('-')[0]
282
412cce82 283 items = self._download_json(
a820dc72
RA
284 'https://%s.yahoo.com/caas/content/article' % country, display_id,
285 'Downloading content JSON metadata', query={
286 'url': url
412cce82 287 })['items'][0]
a820dc72 288
412cce82 289 item = items['data']['partnerData']
a820dc72
RA
290 if item.get('type') != 'video':
291 entries = []
292
293 cover = item.get('cover') or {}
294 if cover.get('type') == 'yvideo':
295 cover_url = cover.get('url')
296 if cover_url:
297 entries.append(self.url_result(
298 cover_url, 'Yahoo', cover.get('uuid')))
299
300 for e in (item.get('body') or []):
301 if e.get('type') == 'videoIframe':
302 iframe_url = e.get('url')
412cce82
L
303 if iframe_url:
304 entries.append(self.url_result(iframe_url))
305
306 if item.get('type') == 'storywithleadvideo':
307 iframe_url = try_get(item, lambda x: x['meta']['player']['url'])
308 if iframe_url:
a820dc72 309 entries.append(self.url_result(iframe_url))
412cce82
L
310 else:
311 self.report_warning("Yahoo didn't provide an iframe url for this storywithleadvideo")
312
313 if items.get('markup'):
314 entries.extend(
bfd973ec 315 self.url_result(yt_url) for yt_url in YoutubeIE._extract_embed_urls(url, items['markup']))
a820dc72
RA
316
317 return self.playlist_result(
318 entries, item.get('uuid'),
319 item.get('title'), item.get('summary'))
320
321 info = self._extract_yahoo_video(item['uuid'], country)
322 info['display_id'] = display_id
323 return info
324
934858ad
PH
325
326class YahooSearchIE(SearchInfoExtractor):
2317e6b2 327 IE_DESC = 'Yahoo screen search'
934858ad 328 _MAX_RESULTS = 1000
2317e6b2 329 IE_NAME = 'screen.yahoo:search'
934858ad
PH
330 _SEARCH_KEY = 'yvsearch'
331
cc16383f 332 def _search_results(self, query):
88f1c6de 333 for pagenum in itertools.count(0):
ac668111 334 result_url = 'http://video.search.yahoo.com/search/?p=%s&fr=screen&o=js&gs=0&b=%d' % (urllib.parse.quote_plus(query), pagenum * 30)
88f1c6de 335 info = self._download_json(result_url, query,
9e1a5b84 336 note='Downloading results page ' + str(pagenum + 1))
cc16383f 337 yield from (self.url_result(result['rurl']) for result in info['results'])
338 if info['m']['last'] >= info['m']['total'] - 1:
934858ad
PH
339 break
340
174f6299
RA
341
342class YahooGyaOPlayerIE(InfoExtractor):
343 IE_NAME = 'yahoo:gyao:player'
ccc7795c 344 _VALID_URL = r'https?://(?:gyao\.yahoo\.co\.jp/(?:player|episode(?:/[^/]+)?)|streaming\.yahoo\.co\.jp/c/y)/(?P<id>\d+/v\d+/v\d+|[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12})'
3534b632 345 _TESTS = [{
174f6299
RA
346 'url': 'https://gyao.yahoo.co.jp/player/00998/v00818/v0000000000000008564/',
347 'info_dict': {
348 'id': '5993125228001',
349 'ext': 'mp4',
350 'title': 'フューリー 【字幕版】',
351 'description': 'md5:21e691c798a15330eda4db17a8fe45a5',
352 'uploader_id': '4235717419001',
353 'upload_date': '20190124',
354 'timestamp': 1548294365,
355 },
356 'params': {
357 # m3u8 download
358 'skip_download': True,
359 },
3534b632
RA
360 }, {
361 'url': 'https://streaming.yahoo.co.jp/c/y/01034/v00133/v0000000000000000706/',
362 'only_matching': True,
0b758fea
RA
363 }, {
364 'url': 'https://gyao.yahoo.co.jp/episode/%E3%81%8D%E3%81%AE%E3%81%86%E4%BD%95%E9%A3%9F%E3%81%B9%E3%81%9F%EF%BC%9F%20%E7%AC%AC2%E8%A9%B1%202019%2F4%2F12%E6%94%BE%E9%80%81%E5%88%86/5cb02352-b725-409e-9f8d-88f947a9f682',
365 'only_matching': True,
ccc7795c
THD
366 }, {
367 'url': 'https://gyao.yahoo.co.jp/episode/5fa1226c-ef8d-4e93-af7a-fd92f4e30597',
368 'only_matching': True,
3534b632 369 }]
2468a6fa 370 _GEO_BYPASS = False
174f6299
RA
371
372 def _real_extract(self, url):
373 video_id = self._match_id(url).replace('/', ':')
2468a6fa
RA
374 headers = self.geo_verification_headers()
375 headers['Accept'] = 'application/json'
376 resp = self._download_json(
377 'https://gyao.yahoo.co.jp/apis/playback/graphql', video_id, query={
378 'appId': 'dj00aiZpPUNJeDh2cU1RazU3UCZzPWNvbnN1bWVyc2VjcmV0Jng9NTk-',
379 'query': '''{
380 content(parameter: {contentId: "%s", logicaAgent: PC_WEB}) {
381 video {
382 delivery {
383 id
384 }
385 title
386 }
387 }
388}''' % video_id,
389 }, headers=headers)
390 content = resp['data']['content']
391 if not content:
392 msg = resp['errors'][0]['message']
393 if msg == 'not in japan':
394 self.raise_geo_restricted(countries=['JP'])
395 raise ExtractorError(msg)
396 video = content['video']
174f6299
RA
397 return {
398 '_type': 'url_transparent',
399 'id': video_id,
400 'title': video['title'],
0b758fea 401 'url': smuggle_url(
2468a6fa 402 'http://players.brightcove.net/4235717419001/SyG5P0gjb_default/index.html?videoId=' + video['delivery']['id'],
0b758fea 403 {'geo_countries': ['JP']}),
174f6299
RA
404 'ie_key': BrightcoveNewIE.ie_key(),
405 }
406
407
408class YahooGyaOIE(InfoExtractor):
409 IE_NAME = 'yahoo:gyao'
2468a6fa 410 _VALID_URL = r'https?://(?:gyao\.yahoo\.co\.jp/(?:p|title(?:/[^/]+)?)|streaming\.yahoo\.co\.jp/p/y)/(?P<id>\d+/v\d+|[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12})'
3534b632 411 _TESTS = [{
e9a6a65a 412 'url': 'https://gyao.yahoo.co.jp/title/%E3%82%BF%E3%82%A4%E3%83%A0%E3%83%9C%E3%82%AB%E3%83%B3%E3%82%B7%E3%83%AA%E3%83%BC%E3%82%BA%20%E3%83%A4%E3%83%83%E3%82%BF%E3%83%BC%E3%83%9E%E3%83%B3/5f60ceb3-6e5e-40ef-ba40-d68b598d067f',
174f6299 413 'info_dict': {
e9a6a65a 414 'id': '5f60ceb3-6e5e-40ef-ba40-d68b598d067f',
174f6299 415 },
e9a6a65a
HY
416 'playlist_mincount': 80,
417 }, {
418 'url': 'https://gyao.yahoo.co.jp/p/00449/v03102/',
419 'only_matching': True,
3534b632
RA
420 }, {
421 'url': 'https://streaming.yahoo.co.jp/p/y/01034/v00133/',
422 'only_matching': True,
a5b92d35
RA
423 }, {
424 'url': 'https://gyao.yahoo.co.jp/title/%E3%81%97%E3%82%83%E3%81%B9%E3%81%8F%E3%82%8A007/5b025a49-b2e5-4dc7-945c-09c6634afacf',
425 'only_matching': True,
2468a6fa
RA
426 }, {
427 'url': 'https://gyao.yahoo.co.jp/title/5b025a49-b2e5-4dc7-945c-09c6634afacf',
428 'only_matching': True,
3534b632 429 }]
174f6299 430
e9a6a65a
HY
431 def _entries(self, program_id):
432 page = 1
433 while True:
434 playlist = self._download_json(
8a3e7b1c 435 f'https://gyao.yahoo.co.jp/api/programs/{program_id}/videos?page={page}&serviceId=gy', program_id,
e9a6a65a
HY
436 note=f'Downloading JSON metadata page {page}')
437 if not playlist:
438 break
439 for video in playlist['videos']:
440 video_id = video.get('id')
441 if not video_id:
442 continue
443 if video.get('streamingAvailability') == 'notYet':
444 continue
445 yield self.url_result(
446 'https://gyao.yahoo.co.jp/player/%s/' % video_id.replace(':', '/'),
447 YahooGyaOPlayerIE.ie_key(), video_id)
448 if playlist.get('ended'):
449 break
450 page += 1
451
174f6299
RA
452 def _real_extract(self, url):
453 program_id = self._match_id(url).replace('/', ':')
e9a6a65a 454 return self.playlist_result(self._entries(program_id), program_id)
608b8a43
K
455
456
457class YahooJapanNewsIE(InfoExtractor):
458 IE_NAME = 'yahoo:japannews'
459 IE_DESC = 'Yahoo! Japan News'
565a4c59 460 _VALID_URL = r'https?://news\.yahoo\.co\.jp/(?:articles|feature)/(?P<id>[a-zA-Z0-9]+)'
608b8a43
K
461 _GEO_COUNTRIES = ['JP']
462 _TESTS = [{
565a4c59 463 'url': 'https://news.yahoo.co.jp/articles/a70fe3a064f1cfec937e2252c7fc6c1ba3201c0e',
608b8a43 464 'info_dict': {
565a4c59 465 'id': 'a70fe3a064f1cfec937e2252c7fc6c1ba3201c0e',
608b8a43 466 'ext': 'mp4',
565a4c59
L
467 'title': '【独自】安倍元総理「国葬」中止求め“脅迫メール”…「子ども誘拐」“送信者”を追跡',
468 'description': 'md5:1c06974575f930f692d8696fbcfdc546',
469 'thumbnail': r're:https://.+',
608b8a43
K
470 },
471 'params': {
472 'skip_download': True,
473 },
608b8a43
K
474 }, {
475 'url': 'https://news.yahoo.co.jp/feature/1356',
476 'only_matching': True
477 }]
478
479 def _extract_formats(self, json_data, content_id):
480 formats = []
481
565a4c59 482 for vid in traverse_obj(json_data, ('ResultSet', 'Result', ..., 'VideoUrlSet', 'VideoUrl', ...)) or []:
608b8a43
K
483 delivery = vid.get('delivery')
484 url = url_or_none(vid.get('Url'))
485 if not delivery or not url:
486 continue
487 elif delivery == 'hls':
488 formats.extend(
489 self._extract_m3u8_formats(
490 url, content_id, 'mp4', 'm3u8_native',
491 m3u8_id='hls', fatal=False))
492 else:
493 formats.append({
494 'url': url,
565a4c59 495 'format_id': f'http-{vid.get("bitrate")}',
608b8a43
K
496 'height': int_or_none(vid.get('height')),
497 'width': int_or_none(vid.get('width')),
498 'tbr': int_or_none(vid.get('bitrate')),
499 })
500 self._remove_duplicate_formats(formats)
501 self._sort_formats(formats)
502
503 return formats
504
505 def _real_extract(self, url):
565a4c59
L
506 video_id = self._match_id(url)
507 webpage = self._download_webpage(url, video_id)
508 preloaded_state = self._search_json(r'__PRELOADED_STATE__\s*=', webpage, 'preloaded state', video_id)
509
510 content_id = traverse_obj(
511 preloaded_state, ('articleDetail', 'paragraphs', ..., 'objectItems', ..., 'video', 'vid'),
512 get_all=False, expected_type=int)
513 if content_id is None:
514 raise ExtractorError('This article does not contain a video', expected=True)
515
516 HOST = 'news.yahoo.co.jp'
517 space_id = traverse_obj(preloaded_state, ('pageData', 'spaceId'), expected_type=str)
608b8a43 518 json_data = self._download_json(
565a4c59
L
519 f'https://feapi-yvpub.yahooapis.jp/v1/content/{content_id}',
520 video_id, query={
608b8a43
K
521 'appid': 'dj0zaiZpPVZMTVFJR0FwZWpiMyZzPWNvbnN1bWVyc2VjcmV0Jng9YjU-',
522 'output': 'json',
565a4c59
L
523 'domain': HOST,
524 'ak': hashlib.md5('_'.join((space_id, HOST)).encode()).hexdigest() if space_id else '',
608b8a43
K
525 'device_type': '1100',
526 })
565a4c59
L
527
528 title = (
529 traverse_obj(preloaded_state,
530 ('articleDetail', 'headline'), ('pageData', 'pageParam', 'title'),
531 expected_type=str)
532 or self._html_search_meta(('og:title', 'twitter:title'), webpage, 'title', default=None)
533 or self._html_extract_title(webpage))
534 description = (
535 traverse_obj(preloaded_state, ('pageData', 'description'), expected_type=str)
536 or self._html_search_meta(
537 ('og:description', 'description', 'twitter:description'),
538 webpage, 'description', default=None))
539 thumbnail = (
540 traverse_obj(preloaded_state, ('pageData', 'ogpImage'), expected_type=str)
541 or self._og_search_thumbnail(webpage, default=None)
542 or self._html_search_meta('twitter:image', webpage, 'thumbnail', default=None))
608b8a43
K
543
544 return {
565a4c59 545 'id': video_id,
608b8a43
K
546 'title': title,
547 'description': description,
548 'thumbnail': thumbnail,
565a4c59 549 'formats': self._extract_formats(json_data, video_id),
608b8a43 550 }