yahoo.py 15 KB

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