You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

408 lines
17 KiB

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