yahoo.py 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import itertools
  4. import json
  5. import re
  6. from .common import InfoExtractor, SearchInfoExtractor
  7. from ..compat import (
  8. compat_urllib_parse,
  9. compat_urlparse,
  10. )
  11. from ..utils import (
  12. clean_html,
  13. unescapeHTML,
  14. ExtractorError,
  15. int_or_none,
  16. mimetype2ext,
  17. determine_ext,
  18. )
  19. from .brightcove import BrightcoveNewIE
  20. from .nbc import NBCSportsVPlayerIE
  21. class YahooIE(InfoExtractor):
  22. IE_DESC = 'Yahoo screen and movies'
  23. _VALID_URL = r'(?P<url>(?P<host>https?://(?:[a-zA-Z]{2}\.)?[\da-zA-Z_-]+\.yahoo\.com)/(?:[^/]+/)*(?P<display_id>.+)?-(?P<id>[0-9]+)(?:-[a-z]+)?(?:\.html)?)'
  24. _TESTS = [
  25. {
  26. 'url': 'http://screen.yahoo.com/julian-smith-travis-legg-watch-214727115.html',
  27. 'info_dict': {
  28. 'id': '2d25e626-2378-391f-ada0-ddaf1417e588',
  29. 'ext': 'mp4',
  30. 'title': 'Julian Smith & Travis Legg Watch Julian Smith',
  31. 'description': 'Julian and Travis watch Julian Smith',
  32. 'duration': 6863,
  33. },
  34. },
  35. {
  36. 'url': 'http://screen.yahoo.com/wired/codefellas-s1-ep12-cougar-lies-103000935.html',
  37. 'md5': '251af144a19ebc4a033e8ba91ac726bb',
  38. 'info_dict': {
  39. 'id': 'd1dedf8c-d58c-38c3-8963-e899929ae0a9',
  40. 'ext': 'mp4',
  41. 'title': 'Codefellas - The Cougar Lies with Spanish Moss',
  42. 'description': 'md5:66b627ab0a282b26352136ca96ce73c1',
  43. 'duration': 151,
  44. },
  45. },
  46. {
  47. 'url': 'https://screen.yahoo.com/community/community-sizzle-reel-203225340.html?format=embed',
  48. 'md5': '7993e572fac98e044588d0b5260f4352',
  49. 'info_dict': {
  50. 'id': '4fe78544-8d48-39d8-97cd-13f205d9fcdb',
  51. 'ext': 'mp4',
  52. 'title': "Yahoo Saves 'Community'",
  53. 'description': 'md5:4d4145af2fd3de00cbb6c1d664105053',
  54. 'duration': 170,
  55. }
  56. },
  57. {
  58. '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',
  59. 'md5': '45c024bad51e63e9b6f6fad7a43a8c23',
  60. 'info_dict': {
  61. 'id': 'cac903b3-fcf4-3c14-b632-643ab541712f',
  62. 'ext': 'mp4',
  63. 'title': '敢問市長/黃秀霜批賴清德「非常高傲」',
  64. 'description': '直言台南沒捷運 交通居五都之末',
  65. 'duration': 396,
  66. },
  67. },
  68. {
  69. 'url': 'https://uk.screen.yahoo.com/editor-picks/cute-raccoon-freed-drain-using-091756545.html',
  70. 'md5': '71298482f7c64cbb7fa064e4553ff1c1',
  71. 'info_dict': {
  72. 'id': 'b3affa53-2e14-3590-852b-0e0db6cd1a58',
  73. 'ext': 'webm',
  74. 'title': 'Cute Raccoon Freed From Drain\u00a0Using Angle Grinder',
  75. 'description': 'md5:f66c890e1490f4910a9953c941dee944',
  76. 'duration': 97,
  77. }
  78. },
  79. {
  80. 'url': 'https://ca.sports.yahoo.com/video/program-makes-hockey-more-affordable-013127711.html',
  81. 'md5': '57e06440778b1828a6079d2f744212c4',
  82. 'info_dict': {
  83. 'id': 'c9fa2a36-0d4d-3937-b8f6-cc0fb1881e73',
  84. 'ext': 'mp4',
  85. 'title': 'Program that makes hockey more affordable not offered in Manitoba',
  86. 'description': 'md5:c54a609f4c078d92b74ffb9bf1f496f4',
  87. 'duration': 121,
  88. },
  89. 'skip': 'Video gone',
  90. }, {
  91. 'url': 'https://ca.finance.yahoo.com/news/hackers-sony-more-trouble-well-154609075.html',
  92. 'info_dict': {
  93. 'id': '154609075',
  94. },
  95. 'playlist': [{
  96. 'md5': '000887d0dc609bc3a47c974151a40fb8',
  97. 'info_dict': {
  98. 'id': 'e624c4bc-3389-34de-9dfc-025f74943409',
  99. 'ext': 'mp4',
  100. 'title': '\'The Interview\' TV Spot: War',
  101. 'description': 'The Interview',
  102. 'duration': 30,
  103. },
  104. }, {
  105. 'md5': '81bc74faf10750fe36e4542f9a184c66',
  106. 'info_dict': {
  107. 'id': '1fc8ada0-718e-3abe-a450-bf31f246d1a9',
  108. 'ext': 'mp4',
  109. 'title': '\'The Interview\' TV Spot: Guys',
  110. 'description': 'The Interview',
  111. 'duration': 30,
  112. },
  113. }],
  114. }, {
  115. 'url': 'http://news.yahoo.com/video/china-moses-crazy-blues-104538833.html',
  116. 'md5': '88e209b417f173d86186bef6e4d1f160',
  117. 'info_dict': {
  118. 'id': 'f885cf7f-43d4-3450-9fac-46ac30ece521',
  119. 'ext': 'mp4',
  120. 'title': 'China Moses Is Crazy About the Blues',
  121. 'description': 'md5:9900ab8cd5808175c7b3fe55b979bed0',
  122. 'duration': 128,
  123. }
  124. }, {
  125. 'url': 'https://in.lifestyle.yahoo.com/video/connect-dots-dark-side-virgo-090247395.html',
  126. 'md5': 'd9a083ccf1379127bf25699d67e4791b',
  127. 'info_dict': {
  128. 'id': '52aeeaa3-b3d1-30d8-9ef8-5d0cf05efb7c',
  129. 'ext': 'mp4',
  130. 'title': 'Connect the Dots: Dark Side of Virgo',
  131. 'description': 'md5:1428185051cfd1949807ad4ff6d3686a',
  132. 'duration': 201,
  133. },
  134. 'skip': 'Domain name in.lifestyle.yahoo.com gone',
  135. }, {
  136. 'url': 'https://www.yahoo.com/movies/v/true-story-trailer-173000497.html',
  137. 'md5': '2a9752f74cb898af5d1083ea9f661b58',
  138. 'info_dict': {
  139. 'id': '071c4013-ce30-3a93-a5b2-e0413cd4a9d1',
  140. 'ext': 'mp4',
  141. 'title': '\'True Story\' Trailer',
  142. 'description': 'True Story',
  143. 'duration': 150,
  144. },
  145. }, {
  146. 'url': 'https://gma.yahoo.com/pizza-delivery-man-surprised-huge-tip-college-kids-195200785.html',
  147. 'only_matching': True,
  148. }, {
  149. 'note': 'NBC Sports embeds',
  150. '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',
  151. 'info_dict': {
  152. 'id': '9CsDKds0kvHI',
  153. 'ext': 'flv',
  154. 'description': 'md5:df390f70a9ba7c95ff1daace988f0d8d',
  155. 'title': 'Tyler Kalinoski hits buzzer-beater to lift Davidson',
  156. 'upload_date': '20150313',
  157. 'uploader': 'NBCU-SPORTS',
  158. 'timestamp': 1426270238,
  159. }
  160. }, {
  161. 'url': 'https://tw.news.yahoo.com/-100120367.html',
  162. 'only_matching': True,
  163. }, {
  164. # Query result is embedded in webpage, but explicit request to video API fails with geo restriction
  165. 'url': 'https://screen.yahoo.com/community/communitary-community-episode-1-ladders-154501237.html',
  166. 'md5': '4fbafb9c9b6f07aa8f870629f6671b35',
  167. 'info_dict': {
  168. 'id': '1f32853c-a271-3eef-8cb6-f6d6872cb504',
  169. 'ext': 'mp4',
  170. 'title': 'Communitary - Community Episode 1: Ladders',
  171. 'description': 'md5:8fc39608213295748e1e289807838c97',
  172. 'duration': 1646,
  173. },
  174. }, {
  175. # it uses an alias to get the video_id
  176. 'url': 'https://www.yahoo.com/movies/the-stars-of-daddys-home-have-very-different-212843197.html',
  177. 'info_dict': {
  178. 'id': '40eda9c8-8e5f-3552-8745-830f67d0c737',
  179. 'ext': 'mp4',
  180. 'title': 'Will Ferrell & Mark Wahlberg Are Pro-Spanking',
  181. 'description': 'While they play feuding fathers in \'Daddy\'s Home,\' star Will Ferrell & Mark Wahlberg share their true feelings on parenthood.',
  182. },
  183. },
  184. {
  185. # config['models']['applet_model']['data']['sapi'] has no query
  186. 'url': 'https://www.yahoo.com/music/livenation/event/galactic-2016',
  187. 'md5': 'dac0c72d502bc5facda80c9e6d5c98db',
  188. 'info_dict': {
  189. 'id': 'a6015640-e9e5-3efb-bb60-05589a183919',
  190. 'ext': 'mp4',
  191. 'description': 'Galactic',
  192. 'title': 'Dolla Diva (feat. Maggie Koerner)',
  193. },
  194. 'skip': 'redirect to https://www.yahoo.com/music',
  195. },
  196. ]
  197. def _real_extract(self, url):
  198. mobj = re.match(self._VALID_URL, url)
  199. display_id = mobj.group('display_id') or self._match_id(url)
  200. page_id = mobj.group('id')
  201. url = mobj.group('url')
  202. host = mobj.group('host')
  203. webpage, urlh = self._download_webpage_handle(url, display_id)
  204. if 'err=404' in urlh.geturl():
  205. raise ExtractorError('Video gone', expected=True)
  206. # Look for iframed media first
  207. entries = []
  208. iframe_urls = re.findall(r'<iframe[^>]+src="(/video/.+?-\d+\.html\?format=embed.*?)"', webpage)
  209. for idx, iframe_url in enumerate(iframe_urls):
  210. entries.append(self.url_result(host + iframe_url, 'Yahoo'))
  211. if entries:
  212. return self.playlist_result(entries, page_id)
  213. # Look for NBCSports iframes
  214. nbc_sports_url = NBCSportsVPlayerIE._extract_url(webpage)
  215. if nbc_sports_url:
  216. return self.url_result(nbc_sports_url, NBCSportsVPlayerIE.ie_key())
  217. # Look for Brightcove New Studio embeds
  218. bc_url = BrightcoveNewIE._extract_url(webpage)
  219. if bc_url:
  220. return self.url_result(bc_url, BrightcoveNewIE.ie_key())
  221. # Query result is often embedded in webpage as JSON. Sometimes explicit requests
  222. # to video API results in a failure with geo restriction reason therefore using
  223. # embedded query result when present sounds reasonable.
  224. config_json = self._search_regex(
  225. r'window\.Af\.bootstrap\[[^\]]+\]\s*=\s*({.*?"applet_type"\s*:\s*"td-applet-videoplayer".*?});(?:</script>|$)',
  226. webpage, 'videoplayer applet', default=None)
  227. if config_json:
  228. config = self._parse_json(config_json, display_id, fatal=False)
  229. if config:
  230. sapi = config.get('models', {}).get('applet_model', {}).get('data', {}).get('sapi')
  231. if sapi and 'query' in sapi:
  232. info = self._extract_info(display_id, sapi, webpage)
  233. self._sort_formats(info['formats'])
  234. return info
  235. items_json = self._search_regex(
  236. r'mediaItems: ({.*?})$', webpage, 'items', flags=re.MULTILINE,
  237. default=None)
  238. if items_json is None:
  239. alias = self._search_regex(
  240. r'"aliases":{"video":"(.*?)"', webpage, 'alias', default=None)
  241. if alias is not None:
  242. alias_info = self._download_json(
  243. 'https://www.yahoo.com/_td/api/resource/VideoService.videos;video_aliases=["%s"]' % alias,
  244. display_id, 'Downloading alias info')
  245. video_id = alias_info[0]['id']
  246. else:
  247. CONTENT_ID_REGEXES = [
  248. r'YUI\.namespace\("Media"\)\.CONTENT_ID\s*=\s*"([^"]+)"',
  249. r'root\.App\.Cache\.context\.videoCache\.curVideo = \{"([^"]+)"',
  250. r'"first_videoid"\s*:\s*"([^"]+)"',
  251. r'%s[^}]*"ccm_id"\s*:\s*"([^"]+)"' % re.escape(page_id),
  252. r'<article[^>]data-uuid=["\']([^"\']+)',
  253. r'yahoo://article/view\?.*\buuid=([^&"\']+)',
  254. ]
  255. video_id = self._search_regex(
  256. CONTENT_ID_REGEXES, webpage, 'content ID')
  257. else:
  258. items = json.loads(items_json)
  259. info = items['mediaItems']['query']['results']['mediaObj'][0]
  260. # The 'meta' field is not always in the video webpage, we request it
  261. # from another page
  262. video_id = info['id']
  263. return self._get_info(video_id, display_id, webpage)
  264. def _extract_info(self, display_id, query, webpage):
  265. info = query['query']['results']['mediaObj'][0]
  266. meta = info.get('meta')
  267. video_id = info.get('id')
  268. if not meta:
  269. msg = info['status'].get('msg')
  270. if msg:
  271. raise ExtractorError(
  272. '%s returned error: %s' % (self.IE_NAME, msg), expected=True)
  273. raise ExtractorError('Unable to extract media object meta')
  274. formats = []
  275. for s in info['streams']:
  276. tbr = int_or_none(s.get('bitrate'))
  277. format_info = {
  278. 'width': int_or_none(s.get('width')),
  279. 'height': int_or_none(s.get('height')),
  280. 'tbr': tbr,
  281. }
  282. host = s['host']
  283. path = s['path']
  284. if host.startswith('rtmp'):
  285. fmt = 'rtmp'
  286. format_info.update({
  287. 'url': host,
  288. 'play_path': path,
  289. 'ext': 'flv',
  290. })
  291. else:
  292. if s.get('format') == 'm3u8_playlist':
  293. fmt = 'hls'
  294. format_info.update({
  295. 'protocol': 'm3u8_native',
  296. 'ext': 'mp4',
  297. })
  298. else:
  299. fmt = format_info['ext'] = determine_ext(path)
  300. format_url = compat_urlparse.urljoin(host, path)
  301. format_info['url'] = format_url
  302. format_info['format_id'] = fmt + ('-%d' % tbr if tbr else '')
  303. formats.append(format_info)
  304. closed_captions = self._html_search_regex(
  305. r'"closedcaptions":(\[[^\]]+\])', webpage, 'closed captions',
  306. default='[]')
  307. cc_json = self._parse_json(closed_captions, video_id, fatal=False)
  308. subtitles = {}
  309. if cc_json:
  310. for closed_caption in cc_json:
  311. lang = closed_caption['lang']
  312. if lang not in subtitles:
  313. subtitles[lang] = []
  314. subtitles[lang].append({
  315. 'url': closed_caption['url'],
  316. 'ext': mimetype2ext(closed_caption['content_type']),
  317. })
  318. return {
  319. 'id': video_id,
  320. 'display_id': display_id,
  321. 'title': unescapeHTML(meta['title']),
  322. 'formats': formats,
  323. 'description': clean_html(meta['description']),
  324. 'thumbnail': meta['thumbnail'] if meta.get('thumbnail') else self._og_search_thumbnail(webpage),
  325. 'duration': int_or_none(meta.get('duration')),
  326. 'subtitles': subtitles,
  327. }
  328. def _get_info(self, video_id, display_id, webpage):
  329. region = self._search_regex(
  330. r'\\?"region\\?"\s*:\s*\\?"([^"]+?)\\?"',
  331. webpage, 'region', fatal=False, default='US').upper()
  332. formats = []
  333. info = {}
  334. for fmt in ('webm', 'mp4'):
  335. query_result = self._download_json(
  336. 'https://video.media.yql.yahoo.com/v1/video/sapi/streams/' + video_id,
  337. display_id, 'Downloading %s video info' % fmt, query={
  338. 'protocol': 'http',
  339. 'region': region,
  340. 'format': fmt,
  341. })
  342. info = self._extract_info(display_id, query_result, webpage)
  343. formats.extend(info['formats'])
  344. formats.extend(self._extract_m3u8_formats(
  345. 'http://video.media.yql.yahoo.com/v1/hls/%s?region=%s' % (video_id, region),
  346. video_id, 'mp4', 'm3u8_native', m3u8_id='hls', fatal=False))
  347. self._sort_formats(formats)
  348. info['formats'] = formats
  349. return info
  350. class YahooSearchIE(SearchInfoExtractor):
  351. IE_DESC = 'Yahoo screen search'
  352. _MAX_RESULTS = 1000
  353. IE_NAME = 'screen.yahoo:search'
  354. _SEARCH_KEY = 'yvsearch'
  355. def _get_n_results(self, query, n):
  356. """Get a specified number of results for a query"""
  357. entries = []
  358. for pagenum in itertools.count(0):
  359. 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)
  360. info = self._download_json(result_url, query,
  361. note='Downloading results page ' + str(pagenum + 1))
  362. m = info['m']
  363. results = info['results']
  364. for (i, r) in enumerate(results):
  365. if (pagenum * 30) + i >= n:
  366. break
  367. mobj = re.search(r'(?P<url>screen\.yahoo\.com/.*?-\d*?\.html)"', r)
  368. e = self.url_result('http://' + mobj.group('url'), 'Yahoo')
  369. entries.append(e)
  370. if (pagenum * 30 + i >= n) or (m['last'] >= (m['total'] - 1)):
  371. break
  372. return {
  373. '_type': 'playlist',
  374. 'id': query,
  375. 'entries': entries,
  376. }