yahoo.py 15 KB

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