yahoo.py 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import hashlib
  4. import itertools
  5. import json
  6. import re
  7. from .common import InfoExtractor, SearchInfoExtractor
  8. from ..compat import (
  9. compat_str,
  10. compat_urllib_parse,
  11. compat_urlparse,
  12. )
  13. from ..utils import (
  14. clean_html,
  15. determine_ext,
  16. ExtractorError,
  17. extract_attributes,
  18. int_or_none,
  19. mimetype2ext,
  20. smuggle_url,
  21. try_get,
  22. unescapeHTML,
  23. url_or_none,
  24. )
  25. from .brightcove import (
  26. BrightcoveLegacyIE,
  27. BrightcoveNewIE,
  28. )
  29. from .nbc import NBCSportsVPlayerIE
  30. class YahooIE(InfoExtractor):
  31. IE_DESC = 'Yahoo screen and movies'
  32. _VALID_URL = r'(?P<host>https?://(?:(?P<country>[a-zA-Z]{2})\.)?[\da-zA-Z_-]+\.yahoo\.com)/(?:[^/]+/)*(?:(?P<display_id>.+)?-)?(?P<id>[0-9]+)(?:-[a-z]+)?(?:\.html)?'
  33. _TESTS = [
  34. {
  35. 'url': 'http://screen.yahoo.com/julian-smith-travis-legg-watch-214727115.html',
  36. 'info_dict': {
  37. 'id': '2d25e626-2378-391f-ada0-ddaf1417e588',
  38. 'ext': 'mp4',
  39. 'title': 'Julian Smith & Travis Legg Watch Julian Smith',
  40. 'description': 'Julian and Travis watch Julian Smith',
  41. 'duration': 6863,
  42. },
  43. },
  44. {
  45. 'url': 'http://screen.yahoo.com/wired/codefellas-s1-ep12-cougar-lies-103000935.html',
  46. 'md5': '251af144a19ebc4a033e8ba91ac726bb',
  47. 'info_dict': {
  48. 'id': 'd1dedf8c-d58c-38c3-8963-e899929ae0a9',
  49. 'ext': 'mp4',
  50. 'title': 'Codefellas - The Cougar Lies with Spanish Moss',
  51. 'description': 'md5:66b627ab0a282b26352136ca96ce73c1',
  52. 'duration': 151,
  53. },
  54. 'skip': 'HTTP Error 404',
  55. },
  56. {
  57. 'url': 'https://screen.yahoo.com/community/community-sizzle-reel-203225340.html?format=embed',
  58. 'md5': '7993e572fac98e044588d0b5260f4352',
  59. 'info_dict': {
  60. 'id': '4fe78544-8d48-39d8-97cd-13f205d9fcdb',
  61. 'ext': 'mp4',
  62. 'title': "Yahoo Saves 'Community'",
  63. 'description': 'md5:4d4145af2fd3de00cbb6c1d664105053',
  64. 'duration': 170,
  65. }
  66. },
  67. {
  68. 'url': 'https://tw.news.yahoo.com/%E6%95%A2%E5%95%8F%E5%B8%82%E9%95%B7%20%E9%BB%83%E7%A7%80%E9%9C%9C%E6%89%B9%E8%B3%B4%E6%B8%85%E5%BE%B7%20%E9%9D%9E%E5%B8%B8%E9%AB%98%E5%82%B2-034024051.html',
  69. 'md5': '45c024bad51e63e9b6f6fad7a43a8c23',
  70. 'info_dict': {
  71. 'id': 'cac903b3-fcf4-3c14-b632-643ab541712f',
  72. 'ext': 'mp4',
  73. 'title': '敢問市長/黃秀霜批賴清德「非常高傲」',
  74. 'description': '直言台南沒捷運 交通居五都之末',
  75. 'duration': 396,
  76. },
  77. },
  78. {
  79. 'url': 'https://uk.screen.yahoo.com/editor-picks/cute-raccoon-freed-drain-using-091756545.html',
  80. 'md5': '71298482f7c64cbb7fa064e4553ff1c1',
  81. 'info_dict': {
  82. 'id': 'b3affa53-2e14-3590-852b-0e0db6cd1a58',
  83. 'ext': 'webm',
  84. 'title': 'Cute Raccoon Freed From Drain\u00a0Using Angle Grinder',
  85. 'description': 'md5:f66c890e1490f4910a9953c941dee944',
  86. 'duration': 97,
  87. }
  88. },
  89. {
  90. 'url': 'https://ca.sports.yahoo.com/video/program-makes-hockey-more-affordable-013127711.html',
  91. 'md5': '57e06440778b1828a6079d2f744212c4',
  92. 'info_dict': {
  93. 'id': 'c9fa2a36-0d4d-3937-b8f6-cc0fb1881e73',
  94. 'ext': 'mp4',
  95. 'title': 'Program that makes hockey more affordable not offered in Manitoba',
  96. 'description': 'md5:c54a609f4c078d92b74ffb9bf1f496f4',
  97. 'duration': 121,
  98. },
  99. 'skip': 'Video gone',
  100. }, {
  101. 'url': 'https://ca.finance.yahoo.com/news/hackers-sony-more-trouble-well-154609075.html',
  102. 'info_dict': {
  103. 'id': '154609075',
  104. },
  105. 'playlist': [{
  106. 'md5': '000887d0dc609bc3a47c974151a40fb8',
  107. 'info_dict': {
  108. 'id': 'e624c4bc-3389-34de-9dfc-025f74943409',
  109. 'ext': 'mp4',
  110. 'title': '\'The Interview\' TV Spot: War',
  111. 'description': 'The Interview',
  112. 'duration': 30,
  113. },
  114. }, {
  115. 'md5': '81bc74faf10750fe36e4542f9a184c66',
  116. 'info_dict': {
  117. 'id': '1fc8ada0-718e-3abe-a450-bf31f246d1a9',
  118. 'ext': 'mp4',
  119. 'title': '\'The Interview\' TV Spot: Guys',
  120. 'description': 'The Interview',
  121. 'duration': 30,
  122. },
  123. }],
  124. }, {
  125. 'url': 'http://news.yahoo.com/video/china-moses-crazy-blues-104538833.html',
  126. 'md5': '88e209b417f173d86186bef6e4d1f160',
  127. 'info_dict': {
  128. 'id': 'f885cf7f-43d4-3450-9fac-46ac30ece521',
  129. 'ext': 'mp4',
  130. 'title': 'China Moses Is Crazy About the Blues',
  131. 'description': 'md5:9900ab8cd5808175c7b3fe55b979bed0',
  132. 'duration': 128,
  133. }
  134. }, {
  135. 'url': 'https://in.lifestyle.yahoo.com/video/connect-dots-dark-side-virgo-090247395.html',
  136. 'md5': 'd9a083ccf1379127bf25699d67e4791b',
  137. 'info_dict': {
  138. 'id': '52aeeaa3-b3d1-30d8-9ef8-5d0cf05efb7c',
  139. 'ext': 'mp4',
  140. 'title': 'Connect the Dots: Dark Side of Virgo',
  141. 'description': 'md5:1428185051cfd1949807ad4ff6d3686a',
  142. 'duration': 201,
  143. },
  144. 'skip': 'Domain name in.lifestyle.yahoo.com gone',
  145. }, {
  146. 'url': 'https://www.yahoo.com/movies/v/true-story-trailer-173000497.html',
  147. 'md5': '989396ae73d20c6f057746fb226aa215',
  148. 'info_dict': {
  149. 'id': '071c4013-ce30-3a93-a5b2-e0413cd4a9d1',
  150. 'ext': 'mp4',
  151. 'title': '\'True Story\' Trailer',
  152. 'description': 'True Story',
  153. 'duration': 150,
  154. },
  155. }, {
  156. 'url': 'https://gma.yahoo.com/pizza-delivery-man-surprised-huge-tip-college-kids-195200785.html',
  157. 'only_matching': True,
  158. }, {
  159. 'note': 'NBC Sports embeds',
  160. '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',
  161. 'info_dict': {
  162. 'id': '9CsDKds0kvHI',
  163. 'ext': 'flv',
  164. 'description': 'md5:df390f70a9ba7c95ff1daace988f0d8d',
  165. 'title': 'Tyler Kalinoski hits buzzer-beater to lift Davidson',
  166. 'upload_date': '20150313',
  167. 'uploader': 'NBCU-SPORTS',
  168. 'timestamp': 1426270238,
  169. }
  170. }, {
  171. 'url': 'https://tw.news.yahoo.com/-100120367.html',
  172. 'only_matching': True,
  173. }, {
  174. # Query result is embedded in webpage, but explicit request to video API fails with geo restriction
  175. 'url': 'https://screen.yahoo.com/community/communitary-community-episode-1-ladders-154501237.html',
  176. 'md5': '4fbafb9c9b6f07aa8f870629f6671b35',
  177. 'info_dict': {
  178. 'id': '1f32853c-a271-3eef-8cb6-f6d6872cb504',
  179. 'ext': 'mp4',
  180. 'title': 'Communitary - Community Episode 1: Ladders',
  181. 'description': 'md5:8fc39608213295748e1e289807838c97',
  182. 'duration': 1646,
  183. },
  184. }, {
  185. # it uses an alias to get the video_id
  186. 'url': 'https://www.yahoo.com/movies/the-stars-of-daddys-home-have-very-different-212843197.html',
  187. 'info_dict': {
  188. 'id': '40eda9c8-8e5f-3552-8745-830f67d0c737',
  189. 'ext': 'mp4',
  190. 'title': 'Will Ferrell & Mark Wahlberg Are Pro-Spanking',
  191. 'description': 'While they play feuding fathers in \'Daddy\'s Home,\' star Will Ferrell & Mark Wahlberg share their true feelings on parenthood.',
  192. },
  193. },
  194. {
  195. # config['models']['applet_model']['data']['sapi'] has no query
  196. 'url': 'https://www.yahoo.com/music/livenation/event/galactic-2016',
  197. 'md5': 'dac0c72d502bc5facda80c9e6d5c98db',
  198. 'info_dict': {
  199. 'id': 'a6015640-e9e5-3efb-bb60-05589a183919',
  200. 'ext': 'mp4',
  201. 'description': 'Galactic',
  202. 'title': 'Dolla Diva (feat. Maggie Koerner)',
  203. },
  204. 'skip': 'redirect to https://www.yahoo.com/music',
  205. },
  206. {
  207. # yahoo://article/
  208. 'url': 'https://www.yahoo.com/movies/video/true-story-trailer-173000497.html',
  209. 'info_dict': {
  210. 'id': '071c4013-ce30-3a93-a5b2-e0413cd4a9d1',
  211. 'ext': 'mp4',
  212. 'title': "'True Story' Trailer",
  213. 'description': 'True Story',
  214. },
  215. 'params': {
  216. 'skip_download': True,
  217. },
  218. },
  219. {
  220. # ytwnews://cavideo/
  221. 'url': 'https://tw.video.yahoo.com/movie-tw/單車天使-中文版預-092316541.html',
  222. 'info_dict': {
  223. 'id': 'ba133ff2-0793-3510-b636-59dfe9ff6cff',
  224. 'ext': 'mp4',
  225. 'title': '單車天使 - 中文版預',
  226. 'description': '中文版預',
  227. },
  228. 'params': {
  229. 'skip_download': True,
  230. },
  231. },
  232. {
  233. # custom brightcove
  234. 'url': 'https://au.tv.yahoo.com/plus7/sunrise/-/watch/37083565/clown-entertainers-say-it-is-hurting-their-business/',
  235. 'info_dict': {
  236. 'id': '5575377707001',
  237. 'ext': 'mp4',
  238. 'title': "Clown entertainers say 'It' is hurting their business",
  239. 'description': 'Stephen King s horror film has much to answer for. Jelby and Mr Loopy the Clowns join us.',
  240. 'timestamp': 1505341164,
  241. 'upload_date': '20170913',
  242. 'uploader_id': '2376984109001',
  243. },
  244. 'params': {
  245. 'skip_download': True,
  246. },
  247. },
  248. {
  249. # custom brightcove, geo-restricted to Australia, bypassable
  250. 'url': 'https://au.tv.yahoo.com/plus7/sunrise/-/watch/37263964/sunrise-episode-wed-27-sep/',
  251. 'only_matching': True,
  252. }
  253. ]
  254. def _real_extract(self, url):
  255. mobj = re.match(self._VALID_URL, url)
  256. page_id = mobj.group('id')
  257. display_id = mobj.group('display_id') or page_id
  258. host = mobj.group('host')
  259. webpage, urlh = self._download_webpage_handle(url, display_id)
  260. if 'err=404' in urlh.geturl():
  261. raise ExtractorError('Video gone', expected=True)
  262. # Look for iframed media first
  263. entries = []
  264. iframe_urls = re.findall(r'<iframe[^>]+src="(/video/.+?-\d+\.html\?format=embed.*?)"', webpage)
  265. for idx, iframe_url in enumerate(iframe_urls):
  266. entries.append(self.url_result(host + iframe_url, 'Yahoo'))
  267. if entries:
  268. return self.playlist_result(entries, page_id)
  269. # Look for NBCSports iframes
  270. nbc_sports_url = NBCSportsVPlayerIE._extract_url(webpage)
  271. if nbc_sports_url:
  272. return self.url_result(nbc_sports_url, NBCSportsVPlayerIE.ie_key())
  273. # Look for Brightcove Legacy Studio embeds
  274. bc_url = BrightcoveLegacyIE._extract_brightcove_url(webpage)
  275. if bc_url:
  276. return self.url_result(bc_url, BrightcoveLegacyIE.ie_key())
  277. def brightcove_url_result(bc_url):
  278. return self.url_result(
  279. smuggle_url(bc_url, {'geo_countries': [mobj.group('country')]}),
  280. BrightcoveNewIE.ie_key())
  281. # Look for Brightcove New Studio embeds
  282. bc_url = BrightcoveNewIE._extract_url(self, webpage)
  283. if bc_url:
  284. return brightcove_url_result(bc_url)
  285. brightcove_iframe = self._search_regex(
  286. r'(<iframe[^>]+data-video-id=["\']\d+[^>]+>)', webpage,
  287. 'brightcove iframe', default=None)
  288. if brightcove_iframe:
  289. attr = extract_attributes(brightcove_iframe)
  290. src = attr.get('src')
  291. if src:
  292. parsed_src = compat_urlparse.urlparse(src)
  293. qs = compat_urlparse.parse_qs(parsed_src.query)
  294. account_id = qs.get('accountId', ['2376984109001'])[0]
  295. brightcove_id = attr.get('data-video-id') or qs.get('videoId', [None])[0]
  296. if account_id and brightcove_id:
  297. return brightcove_url_result(
  298. 'http://players.brightcove.net/%s/default_default/index.html?videoId=%s'
  299. % (account_id, brightcove_id))
  300. # Query result is often embedded in webpage as JSON. Sometimes explicit requests
  301. # to video API results in a failure with geo restriction reason therefore using
  302. # embedded query result when present sounds reasonable.
  303. config_json = self._search_regex(
  304. r'window\.Af\.bootstrap\[[^\]]+\]\s*=\s*({.*?"applet_type"\s*:\s*"td-applet-videoplayer".*?});(?:</script>|$)',
  305. webpage, 'videoplayer applet', default=None)
  306. if config_json:
  307. config = self._parse_json(config_json, display_id, fatal=False)
  308. if config:
  309. sapi = config.get('models', {}).get('applet_model', {}).get('data', {}).get('sapi')
  310. if sapi and 'query' in sapi:
  311. info = self._extract_info(display_id, sapi, webpage)
  312. self._sort_formats(info['formats'])
  313. return info
  314. items_json = self._search_regex(
  315. r'mediaItems: ({.*?})$', webpage, 'items', flags=re.MULTILINE,
  316. default=None)
  317. if items_json is None:
  318. alias = self._search_regex(
  319. r'"aliases":{"video":"(.*?)"', webpage, 'alias', default=None)
  320. if alias is not None:
  321. alias_info = self._download_json(
  322. 'https://www.yahoo.com/_td/api/resource/VideoService.videos;video_aliases=["%s"]' % alias,
  323. display_id, 'Downloading alias info')
  324. video_id = alias_info[0]['id']
  325. else:
  326. CONTENT_ID_REGEXES = [
  327. r'YUI\.namespace\("Media"\)\.CONTENT_ID\s*=\s*"([^"]+)"',
  328. r'root\.App\.Cache\.context\.videoCache\.curVideo = \{"([^"]+)"',
  329. r'"first_videoid"\s*:\s*"([^"]+)"',
  330. r'%s[^}]*"ccm_id"\s*:\s*"([^"]+)"' % re.escape(page_id),
  331. r'<article[^>]data-uuid=["\']([^"\']+)',
  332. r'<meta[^<>]+yahoo://article/view\?.*\buuid=([^&"\']+)',
  333. r'<meta[^<>]+["\']ytwnews://cavideo/(?:[^/]+/)+([\da-fA-F-]+)[&"\']',
  334. ]
  335. video_id = self._search_regex(
  336. CONTENT_ID_REGEXES, webpage, 'content ID')
  337. else:
  338. items = json.loads(items_json)
  339. info = items['mediaItems']['query']['results']['mediaObj'][0]
  340. # The 'meta' field is not always in the video webpage, we request it
  341. # from another page
  342. video_id = info['id']
  343. return self._get_info(video_id, display_id, webpage)
  344. def _extract_info(self, display_id, query, webpage):
  345. info = query['query']['results']['mediaObj'][0]
  346. meta = info.get('meta')
  347. video_id = info.get('id')
  348. if not meta:
  349. msg = info['status'].get('msg')
  350. if msg:
  351. raise ExtractorError(
  352. '%s returned error: %s' % (self.IE_NAME, msg), expected=True)
  353. raise ExtractorError('Unable to extract media object meta')
  354. formats = []
  355. for s in info['streams']:
  356. tbr = int_or_none(s.get('bitrate'))
  357. format_info = {
  358. 'width': int_or_none(s.get('width')),
  359. 'height': int_or_none(s.get('height')),
  360. 'tbr': tbr,
  361. }
  362. host = s['host']
  363. path = s['path']
  364. if host.startswith('rtmp'):
  365. fmt = 'rtmp'
  366. format_info.update({
  367. 'url': host,
  368. 'play_path': path,
  369. 'ext': 'flv',
  370. })
  371. else:
  372. if s.get('format') == 'm3u8_playlist':
  373. fmt = 'hls'
  374. format_info.update({
  375. 'protocol': 'm3u8_native',
  376. 'ext': 'mp4',
  377. })
  378. else:
  379. fmt = format_info['ext'] = determine_ext(path)
  380. format_url = compat_urlparse.urljoin(host, path)
  381. format_info['url'] = format_url
  382. format_info['format_id'] = fmt + ('-%d' % tbr if tbr else '')
  383. formats.append(format_info)
  384. closed_captions = self._html_search_regex(
  385. r'"closedcaptions":(\[[^\]]+\])', webpage, 'closed captions',
  386. default='[]')
  387. cc_json = self._parse_json(closed_captions, video_id, fatal=False)
  388. subtitles = {}
  389. if cc_json:
  390. for closed_caption in cc_json:
  391. lang = closed_caption['lang']
  392. if lang not in subtitles:
  393. subtitles[lang] = []
  394. subtitles[lang].append({
  395. 'url': closed_caption['url'],
  396. 'ext': mimetype2ext(closed_caption['content_type']),
  397. })
  398. return {
  399. 'id': video_id,
  400. 'display_id': display_id,
  401. 'title': unescapeHTML(meta['title']),
  402. 'formats': formats,
  403. 'description': clean_html(meta['description']),
  404. 'thumbnail': meta['thumbnail'] if meta.get('thumbnail') else self._og_search_thumbnail(webpage),
  405. 'duration': int_or_none(meta.get('duration')),
  406. 'subtitles': subtitles,
  407. }
  408. def _get_info(self, video_id, display_id, webpage):
  409. region = self._search_regex(
  410. r'\\?"region\\?"\s*:\s*\\?"([^"]+?)\\?"',
  411. webpage, 'region', fatal=False, default='US').upper()
  412. formats = []
  413. info = {}
  414. for fmt in ('webm', 'mp4'):
  415. query_result = self._download_json(
  416. 'https://video.media.yql.yahoo.com/v1/video/sapi/streams/' + video_id,
  417. display_id, 'Downloading %s video info' % fmt, query={
  418. 'protocol': 'http',
  419. 'region': region,
  420. 'format': fmt,
  421. })
  422. info = self._extract_info(display_id, query_result, webpage)
  423. formats.extend(info['formats'])
  424. formats.extend(self._extract_m3u8_formats(
  425. 'http://video.media.yql.yahoo.com/v1/hls/%s?region=%s' % (video_id, region),
  426. video_id, 'mp4', 'm3u8_native', m3u8_id='hls', fatal=False))
  427. self._sort_formats(formats)
  428. info['formats'] = formats
  429. return info
  430. class YahooSearchIE(SearchInfoExtractor):
  431. IE_DESC = 'Yahoo screen search'
  432. _MAX_RESULTS = 1000
  433. IE_NAME = 'screen.yahoo:search'
  434. _SEARCH_KEY = 'yvsearch'
  435. def _get_n_results(self, query, n):
  436. """Get a specified number of results for a query"""
  437. entries = []
  438. for pagenum in itertools.count(0):
  439. result_url = 'http://video.search.yahoo.com/search/?p=%s&fr=screen&o=js&gs=0&b=%d' % (compat_urllib_parse.quote_plus(query), pagenum * 30)
  440. info = self._download_json(result_url, query,
  441. note='Downloading results page ' + str(pagenum + 1))
  442. m = info['m']
  443. results = info['results']
  444. for (i, r) in enumerate(results):
  445. if (pagenum * 30) + i >= n:
  446. break
  447. mobj = re.search(r'(?P<url>screen\.yahoo\.com/.*?-\d*?\.html)"', r)
  448. e = self.url_result('http://' + mobj.group('url'), 'Yahoo')
  449. entries.append(e)
  450. if (pagenum * 30 + i >= n) or (m['last'] >= (m['total'] - 1)):
  451. break
  452. return {
  453. '_type': 'playlist',
  454. 'id': query,
  455. 'entries': entries,
  456. }
  457. class YahooGyaOPlayerIE(InfoExtractor):
  458. IE_NAME = 'yahoo:gyao:player'
  459. _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})'
  460. _TESTS = [{
  461. 'url': 'https://gyao.yahoo.co.jp/player/00998/v00818/v0000000000000008564/',
  462. 'info_dict': {
  463. 'id': '5993125228001',
  464. 'ext': 'mp4',
  465. 'title': 'フューリー 【字幕版】',
  466. 'description': 'md5:21e691c798a15330eda4db17a8fe45a5',
  467. 'uploader_id': '4235717419001',
  468. 'upload_date': '20190124',
  469. 'timestamp': 1548294365,
  470. },
  471. 'params': {
  472. # m3u8 download
  473. 'skip_download': True,
  474. },
  475. }, {
  476. 'url': 'https://streaming.yahoo.co.jp/c/y/01034/v00133/v0000000000000000706/',
  477. 'only_matching': True,
  478. }, {
  479. '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',
  480. 'only_matching': True,
  481. }]
  482. def _real_extract(self, url):
  483. video_id = self._match_id(url).replace('/', ':')
  484. video = self._download_json(
  485. 'https://gyao.yahoo.co.jp/dam/v1/videos/' + video_id,
  486. video_id, query={
  487. 'fields': 'longDescription,title,videoId',
  488. }, headers={
  489. 'X-User-Agent': 'Unknown Pc GYAO!/2.0.0 Web',
  490. })
  491. return {
  492. '_type': 'url_transparent',
  493. 'id': video_id,
  494. 'title': video['title'],
  495. 'url': smuggle_url(
  496. 'http://players.brightcove.net/4235717419001/default_default/index.html?videoId=' + video['videoId'],
  497. {'geo_countries': ['JP']}),
  498. 'description': video.get('longDescription'),
  499. 'ie_key': BrightcoveNewIE.ie_key(),
  500. }
  501. class YahooGyaOIE(InfoExtractor):
  502. IE_NAME = 'yahoo:gyao'
  503. _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})'
  504. _TESTS = [{
  505. 'url': 'https://gyao.yahoo.co.jp/p/00449/v03102/',
  506. 'info_dict': {
  507. 'id': '00449:v03102',
  508. },
  509. 'playlist_count': 2,
  510. }, {
  511. 'url': 'https://streaming.yahoo.co.jp/p/y/01034/v00133/',
  512. 'only_matching': True,
  513. }, {
  514. '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',
  515. 'only_matching': True,
  516. }]
  517. def _real_extract(self, url):
  518. program_id = self._match_id(url).replace('/', ':')
  519. videos = self._download_json(
  520. 'https://gyao.yahoo.co.jp/api/programs/%s/videos' % program_id, program_id)['videos']
  521. entries = []
  522. for video in videos:
  523. video_id = video.get('id')
  524. if not video_id:
  525. continue
  526. entries.append(self.url_result(
  527. 'https://gyao.yahoo.co.jp/player/%s/' % video_id.replace(':', '/'),
  528. YahooGyaOPlayerIE.ie_key(), video_id))
  529. return self.playlist_result(entries, program_id)
  530. class YahooJapanNewsIE(InfoExtractor):
  531. IE_NAME = 'yahoo:japannews'
  532. IE_DESC = 'Yahoo! Japan News'
  533. _VALID_URL = r'https?://(?P<host>(?:news|headlines)\.yahoo\.co\.jp)[^\d]*(?P<id>\d[\d-]*\d)?'
  534. _GEO_COUNTRIES = ['JP']
  535. _TESTS = [{
  536. 'url': 'https://headlines.yahoo.co.jp/videonews/ann?a=20190716-00000071-ann-int',
  537. 'info_dict': {
  538. 'id': '1736242',
  539. 'ext': 'mp4',
  540. 'title': 'ムン大統領が対日批判を強化“現金化”効果は?(テレビ朝日系(ANN)) - Yahoo!ニュース',
  541. 'description': '韓国の元徴用工らを巡る裁判の原告が弁護士が差し押さえた三菱重工業の資産を売却して - Yahoo!ニュース(テレビ朝日系(ANN))',
  542. 'thumbnail': r're:^https?://.*\.[a-zA-Z\d]{3,4}$',
  543. },
  544. 'params': {
  545. 'skip_download': True,
  546. },
  547. }, {
  548. # geo restricted
  549. 'url': 'https://headlines.yahoo.co.jp/hl?a=20190721-00000001-oxv-l04',
  550. 'only_matching': True,
  551. }, {
  552. 'url': 'https://headlines.yahoo.co.jp/videonews/',
  553. 'only_matching': True,
  554. }, {
  555. 'url': 'https://news.yahoo.co.jp',
  556. 'only_matching': True,
  557. }, {
  558. 'url': 'https://news.yahoo.co.jp/byline/hashimotojunji/20190628-00131977/',
  559. 'only_matching': True,
  560. }, {
  561. 'url': 'https://news.yahoo.co.jp/feature/1356',
  562. 'only_matching': True
  563. }]
  564. def _extract_formats(self, json_data, content_id):
  565. formats = []
  566. video_data = try_get(
  567. json_data,
  568. lambda x: x['ResultSet']['Result'][0]['VideoUrlSet']['VideoUrl'],
  569. list)
  570. for vid in video_data or []:
  571. delivery = vid.get('delivery')
  572. url = url_or_none(vid.get('Url'))
  573. if not delivery or not url:
  574. continue
  575. elif delivery == 'hls':
  576. formats.extend(
  577. self._extract_m3u8_formats(
  578. url, content_id, 'mp4', 'm3u8_native',
  579. m3u8_id='hls', fatal=False))
  580. else:
  581. formats.append({
  582. 'url': url,
  583. 'format_id': 'http-%s' % compat_str(vid.get('bitrate', '')),
  584. 'height': int_or_none(vid.get('height')),
  585. 'width': int_or_none(vid.get('width')),
  586. 'tbr': int_or_none(vid.get('bitrate')),
  587. })
  588. self._remove_duplicate_formats(formats)
  589. self._sort_formats(formats)
  590. return formats
  591. def _real_extract(self, url):
  592. mobj = re.match(self._VALID_URL, url)
  593. host = mobj.group('host')
  594. display_id = mobj.group('id') or host
  595. webpage = self._download_webpage(url, display_id)
  596. title = self._html_search_meta(
  597. ['og:title', 'twitter:title'], webpage, 'title', default=None
  598. ) or self._html_search_regex('<title>([^<]+)</title>', webpage, 'title')
  599. if display_id == host:
  600. # Headline page (w/ multiple BC playlists) ('news.yahoo.co.jp', 'headlines.yahoo.co.jp/videonews/', ...)
  601. stream_plists = re.findall(r'plist=(\d+)', webpage) or re.findall(r'plist["\']:\s*["\']([^"\']+)', webpage)
  602. entries = [
  603. self.url_result(
  604. smuggle_url(
  605. 'http://players.brightcove.net/5690807595001/HyZNerRl7_default/index.html?playlistId=%s' % plist_id,
  606. {'geo_countries': ['JP']}),
  607. ie='BrightcoveNew', video_id=plist_id)
  608. for plist_id in stream_plists]
  609. return self.playlist_result(entries, playlist_title=title)
  610. # Article page
  611. description = self._html_search_meta(
  612. ['og:description', 'description', 'twitter:description'],
  613. webpage, 'description', default=None)
  614. thumbnail = self._og_search_thumbnail(
  615. webpage, default=None) or self._html_search_meta(
  616. 'twitter:image', webpage, 'thumbnail', default=None)
  617. space_id = self._search_regex([
  618. r'<script[^>]+class=["\']yvpub-player["\'][^>]+spaceid=([^&"\']+)',
  619. r'YAHOO\.JP\.srch\.\w+link\.onLoad[^;]+spaceID["\' ]*:["\' ]+([^"\']+)',
  620. r'<!--\s+SpaceID=(\d+)'
  621. ], webpage, 'spaceid')
  622. content_id = self._search_regex(
  623. r'<script[^>]+class=["\']yvpub-player["\'][^>]+contentid=(?P<contentid>[^&"\']+)',
  624. webpage, 'contentid', group='contentid')
  625. json_data = self._download_json(
  626. 'https://feapi-yvpub.yahooapis.jp/v1/content/%s' % content_id,
  627. content_id,
  628. query={
  629. 'appid': 'dj0zaiZpPVZMTVFJR0FwZWpiMyZzPWNvbnN1bWVyc2VjcmV0Jng9YjU-',
  630. 'output': 'json',
  631. 'space_id': space_id,
  632. 'domain': host,
  633. 'ak': hashlib.md5('_'.join((space_id, host)).encode()).hexdigest(),
  634. 'device_type': '1100',
  635. })
  636. formats = self._extract_formats(json_data, content_id)
  637. return {
  638. 'id': content_id,
  639. 'title': title,
  640. 'description': description,
  641. 'thumbnail': thumbnail,
  642. 'formats': formats,
  643. }