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.

391 lines
16 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_urllib_parse_urlencode,
  10. compat_urlparse,
  11. )
  12. from ..utils import (
  13. clean_html,
  14. unescapeHTML,
  15. ExtractorError,
  16. int_or_none,
  17. mimetype2ext,
  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': 'c3466d2b6d5dd6b9f41ba9ed04c24b23',
  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': '75ffabdb87c16d4ffe8c036dc4d1c136',
  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': '9035d38f88b1782682a3e89f985be5bb',
  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': '0b51660361f0e27c9789e7037ef76f4b',
  71. 'info_dict': {
  72. 'id': 'b3affa53-2e14-3590-852b-0e0db6cd1a58',
  73. 'ext': 'mp4',
  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': 'f8e336c6b66f503282e5f719641d6565',
  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': '958bcb90b4d6df71c56312137ee1cd5a',
  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': 'b17ac378b1134fa44370fb27db09a744',
  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': '1ddbf7c850777548438e5c4f147c7b8c',
  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. },
  195. ]
  196. def _real_extract(self, url):
  197. mobj = re.match(self._VALID_URL, url)
  198. display_id = mobj.group('display_id') or self._match_id(url)
  199. page_id = mobj.group('id')
  200. url = mobj.group('url')
  201. host = mobj.group('host')
  202. webpage, urlh = self._download_webpage_handle(url, display_id)
  203. if 'err=404' in urlh.geturl():
  204. raise ExtractorError('Video gone', expected=True)
  205. # Look for iframed media first
  206. entries = []
  207. iframe_urls = re.findall(r'<iframe[^>]+src="(/video/.+?-\d+\.html\?format=embed.*?)"', webpage)
  208. for idx, iframe_url in enumerate(iframe_urls):
  209. iframepage = self._download_webpage(
  210. host + iframe_url, display_id,
  211. note='Downloading iframe webpage for video #%d' % idx)
  212. items_json = self._search_regex(
  213. r'mediaItems: (\[.+?\])$', iframepage, 'items', flags=re.MULTILINE, default=None)
  214. if items_json:
  215. items = json.loads(items_json)
  216. video_id = items[0]['id']
  217. entries.append(self._get_info(video_id, display_id, webpage))
  218. if entries:
  219. return self.playlist_result(entries, page_id)
  220. # Look for NBCSports iframes
  221. nbc_sports_url = NBCSportsVPlayerIE._extract_url(webpage)
  222. if nbc_sports_url:
  223. return self.url_result(nbc_sports_url, NBCSportsVPlayerIE.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. return self._extract_info(display_id, sapi, webpage)
  240. items_json = self._search_regex(
  241. r'mediaItems: ({.*?})$', webpage, 'items', flags=re.MULTILINE,
  242. default=None)
  243. if items_json is None:
  244. alias = self._search_regex(
  245. r'"aliases":{"video":"(.*?)"', webpage, 'alias', default=None)
  246. if alias is not None:
  247. alias_info = self._download_json(
  248. 'https://www.yahoo.com/_td/api/resource/VideoService.videos;video_aliases=["%s"]' % alias,
  249. display_id, 'Downloading alias info')
  250. video_id = alias_info[0]['id']
  251. else:
  252. CONTENT_ID_REGEXES = [
  253. r'YUI\.namespace\("Media"\)\.CONTENT_ID\s*=\s*"([^"]+)"',
  254. r'root\.App\.Cache\.context\.videoCache\.curVideo = \{"([^"]+)"',
  255. r'"first_videoid"\s*:\s*"([^"]+)"',
  256. r'%s[^}]*"ccm_id"\s*:\s*"([^"]+)"' % re.escape(page_id),
  257. r'<article[^>]data-uuid=["\']([^"\']+)',
  258. r'yahoo://article/view\?.*\buuid=([^&"\']+)',
  259. ]
  260. video_id = self._search_regex(
  261. CONTENT_ID_REGEXES, webpage, 'content ID')
  262. else:
  263. items = json.loads(items_json)
  264. info = items['mediaItems']['query']['results']['mediaObj'][0]
  265. # The 'meta' field is not always in the video webpage, we request it
  266. # from another page
  267. video_id = info['id']
  268. return self._get_info(video_id, display_id, webpage)
  269. def _extract_info(self, display_id, query, webpage):
  270. info = query['query']['results']['mediaObj'][0]
  271. meta = info.get('meta')
  272. video_id = info.get('id')
  273. if not meta:
  274. msg = info['status'].get('msg')
  275. if msg:
  276. raise ExtractorError(
  277. '%s returned error: %s' % (self.IE_NAME, msg), expected=True)
  278. raise ExtractorError('Unable to extract media object meta')
  279. formats = []
  280. for s in info['streams']:
  281. format_info = {
  282. 'width': int_or_none(s.get('width')),
  283. 'height': int_or_none(s.get('height')),
  284. 'tbr': int_or_none(s.get('bitrate')),
  285. }
  286. host = s['host']
  287. path = s['path']
  288. if host.startswith('rtmp'):
  289. format_info.update({
  290. 'url': host,
  291. 'play_path': path,
  292. 'ext': 'flv',
  293. })
  294. else:
  295. if s.get('format') == 'm3u8_playlist':
  296. format_info['protocol'] = 'm3u8_native'
  297. format_info['ext'] = 'mp4'
  298. format_url = compat_urlparse.urljoin(host, path)
  299. format_info['url'] = format_url
  300. formats.append(format_info)
  301. self._sort_formats(formats)
  302. closed_captions = self._html_search_regex(
  303. r'"closedcaptions":(\[[^\]]+\])', webpage, 'closed captions',
  304. default='[]')
  305. cc_json = self._parse_json(closed_captions, video_id, fatal=False)
  306. subtitles = {}
  307. if cc_json:
  308. for closed_caption in cc_json:
  309. lang = closed_caption['lang']
  310. if lang not in subtitles:
  311. subtitles[lang] = []
  312. subtitles[lang].append({
  313. 'url': closed_caption['url'],
  314. 'ext': mimetype2ext(closed_caption['content_type']),
  315. })
  316. return {
  317. 'id': video_id,
  318. 'display_id': display_id,
  319. 'title': unescapeHTML(meta['title']),
  320. 'formats': formats,
  321. 'description': clean_html(meta['description']),
  322. 'thumbnail': meta['thumbnail'] if meta.get('thumbnail') else self._og_search_thumbnail(webpage),
  323. 'duration': int_or_none(meta.get('duration')),
  324. 'subtitles': subtitles,
  325. }
  326. def _get_info(self, video_id, display_id, webpage):
  327. region = self._search_regex(
  328. r'\\?"region\\?"\s*:\s*\\?"([^"]+?)\\?"',
  329. webpage, 'region', fatal=False, default='US')
  330. data = compat_urllib_parse_urlencode({
  331. 'protocol': 'http',
  332. 'region': region.upper(),
  333. })
  334. query_url = (
  335. 'https://video.media.yql.yahoo.com/v1/video/sapi/streams/'
  336. '{id}?{data}'.format(id=video_id, data=data))
  337. query_result = self._download_json(
  338. query_url, display_id, 'Downloading video info')
  339. return self._extract_info(display_id, query_result, webpage)
  340. class YahooSearchIE(SearchInfoExtractor):
  341. IE_DESC = 'Yahoo screen search'
  342. _MAX_RESULTS = 1000
  343. IE_NAME = 'screen.yahoo:search'
  344. _SEARCH_KEY = 'yvsearch'
  345. def _get_n_results(self, query, n):
  346. """Get a specified number of results for a query"""
  347. entries = []
  348. for pagenum in itertools.count(0):
  349. 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)
  350. info = self._download_json(result_url, query,
  351. note='Downloading results page ' + str(pagenum + 1))
  352. m = info['m']
  353. results = info['results']
  354. for (i, r) in enumerate(results):
  355. if (pagenum * 30) + i >= n:
  356. break
  357. mobj = re.search(r'(?P<url>screen\.yahoo\.com/.*?-\d*?\.html)"', r)
  358. e = self.url_result('http://' + mobj.group('url'), 'Yahoo')
  359. entries.append(e)
  360. if (pagenum * 30 + i >= n) or (m['last'] >= (m['total'] - 1)):
  361. break
  362. return {
  363. '_type': 'playlist',
  364. 'id': query,
  365. 'entries': entries,
  366. }