yahoo.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  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. )
  17. from .nbc import NBCSportsVPlayerIE
  18. class YahooIE(InfoExtractor):
  19. IE_DESC = 'Yahoo screen and movies'
  20. _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)'
  21. _TESTS = [
  22. {
  23. 'url': 'http://screen.yahoo.com/julian-smith-travis-legg-watch-214727115.html',
  24. 'info_dict': {
  25. 'id': '2d25e626-2378-391f-ada0-ddaf1417e588',
  26. 'ext': 'mp4',
  27. 'title': 'Julian Smith & Travis Legg Watch Julian Smith',
  28. 'description': 'Julian and Travis watch Julian Smith',
  29. 'duration': 6863,
  30. },
  31. },
  32. {
  33. 'url': 'http://screen.yahoo.com/wired/codefellas-s1-ep12-cougar-lies-103000935.html',
  34. 'md5': 'd6e6fc6e1313c608f316ddad7b82b306',
  35. 'info_dict': {
  36. 'id': 'd1dedf8c-d58c-38c3-8963-e899929ae0a9',
  37. 'ext': 'mp4',
  38. 'title': 'Codefellas - The Cougar Lies with Spanish Moss',
  39. 'description': 'md5:66b627ab0a282b26352136ca96ce73c1',
  40. 'duration': 151,
  41. },
  42. },
  43. {
  44. 'url': 'https://screen.yahoo.com/community/community-sizzle-reel-203225340.html?format=embed',
  45. 'md5': '60e8ac193d8fb71997caa8fce54c6460',
  46. 'info_dict': {
  47. 'id': '4fe78544-8d48-39d8-97cd-13f205d9fcdb',
  48. 'ext': 'mp4',
  49. 'title': "Yahoo Saves 'Community'",
  50. 'description': 'md5:4d4145af2fd3de00cbb6c1d664105053',
  51. 'duration': 170,
  52. }
  53. },
  54. {
  55. 'url': 'https://tw.screen.yahoo.com/election-2014-askmayor/敢問市長-黃秀霜批賴清德-非常高傲-033009720.html',
  56. 'md5': '3a09cf59349cfaddae1797acc3c087fc',
  57. 'info_dict': {
  58. 'id': 'cac903b3-fcf4-3c14-b632-643ab541712f',
  59. 'ext': 'mp4',
  60. 'title': '敢問市長/黃秀霜批賴清德「非常高傲」',
  61. 'description': '直言台南沒捷運 交通居五都之末',
  62. 'duration': 396,
  63. }
  64. },
  65. {
  66. 'url': 'https://uk.screen.yahoo.com/editor-picks/cute-raccoon-freed-drain-using-091756545.html',
  67. 'md5': '0b51660361f0e27c9789e7037ef76f4b',
  68. 'info_dict': {
  69. 'id': 'b3affa53-2e14-3590-852b-0e0db6cd1a58',
  70. 'ext': 'mp4',
  71. 'title': 'Cute Raccoon Freed From Drain\u00a0Using Angle Grinder',
  72. 'description': 'md5:f66c890e1490f4910a9953c941dee944',
  73. 'duration': 97,
  74. }
  75. },
  76. {
  77. 'url': 'https://ca.sports.yahoo.com/video/program-makes-hockey-more-affordable-013127711.html',
  78. 'md5': '57e06440778b1828a6079d2f744212c4',
  79. 'info_dict': {
  80. 'id': 'c9fa2a36-0d4d-3937-b8f6-cc0fb1881e73',
  81. 'ext': 'mp4',
  82. 'title': 'Program that makes hockey more affordable not offered in Manitoba',
  83. 'description': 'md5:c54a609f4c078d92b74ffb9bf1f496f4',
  84. 'duration': 121,
  85. }
  86. }, {
  87. 'url': 'https://ca.finance.yahoo.com/news/hackers-sony-more-trouble-well-154609075.html',
  88. 'md5': '226a895aae7e21b0129e2a2006fe9690',
  89. 'info_dict': {
  90. 'id': 'e624c4bc-3389-34de-9dfc-025f74943409',
  91. 'ext': 'mp4',
  92. 'title': '\'The Interview\' TV Spot: War',
  93. 'description': 'The Interview',
  94. 'duration': 30,
  95. }
  96. }, {
  97. 'url': 'http://news.yahoo.com/video/china-moses-crazy-blues-104538833.html',
  98. 'md5': '67010fdf3a08d290e060a4dd96baa07b',
  99. 'info_dict': {
  100. 'id': 'f885cf7f-43d4-3450-9fac-46ac30ece521',
  101. 'ext': 'mp4',
  102. 'title': 'China Moses Is Crazy About the Blues',
  103. 'description': 'md5:9900ab8cd5808175c7b3fe55b979bed0',
  104. 'duration': 128,
  105. }
  106. }, {
  107. 'url': 'https://in.lifestyle.yahoo.com/video/connect-dots-dark-side-virgo-090247395.html',
  108. 'md5': 'd9a083ccf1379127bf25699d67e4791b',
  109. 'info_dict': {
  110. 'id': '52aeeaa3-b3d1-30d8-9ef8-5d0cf05efb7c',
  111. 'ext': 'mp4',
  112. 'title': 'Connect the Dots: Dark Side of Virgo',
  113. 'description': 'md5:1428185051cfd1949807ad4ff6d3686a',
  114. 'duration': 201,
  115. }
  116. }, {
  117. 'url': 'https://www.yahoo.com/movies/v/true-story-trailer-173000497.html',
  118. 'md5': '989396ae73d20c6f057746fb226aa215',
  119. 'info_dict': {
  120. 'id': '071c4013-ce30-3a93-a5b2-e0413cd4a9d1',
  121. 'ext': 'mp4',
  122. 'title': '\'True Story\' Trailer',
  123. 'description': 'True Story',
  124. 'duration': 150,
  125. },
  126. }, {
  127. 'url': 'https://gma.yahoo.com/pizza-delivery-man-surprised-huge-tip-college-kids-195200785.html',
  128. 'only_matching': True,
  129. }, {
  130. 'note': 'NBC Sports embeds',
  131. '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',
  132. 'md5': 'ceae8dced5c14a1c1ffcb7a32194cca5',
  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. ]
  141. def _real_extract(self, url):
  142. mobj = re.match(self._VALID_URL, url)
  143. display_id = mobj.group('display_id')
  144. page_id = mobj.group('id')
  145. url = mobj.group('url')
  146. host = mobj.group('host')
  147. webpage = self._download_webpage(url, display_id)
  148. # Look for iframed media first
  149. iframe_m = re.search(r'<iframe[^>]+src="(/video/.+?-\d+\.html\?format=embed.*?)"', webpage)
  150. if iframe_m:
  151. iframepage = self._download_webpage(
  152. host + iframe_m.group(1), display_id, 'Downloading iframe webpage')
  153. items_json = self._search_regex(
  154. r'mediaItems: (\[.+?\])$', iframepage, 'items', flags=re.MULTILINE, default=None)
  155. if items_json:
  156. items = json.loads(items_json)
  157. video_id = items[0]['id']
  158. return self._get_info(video_id, display_id, webpage)
  159. # Look for NBCSports iframes
  160. nbc_sports_url = NBCSportsVPlayerIE._extract_url(webpage)
  161. if nbc_sports_url:
  162. return self.url_result(nbc_sports_url, 'NBCSportsVPlayer')
  163. items_json = self._search_regex(
  164. r'mediaItems: ({.*?})$', webpage, 'items', flags=re.MULTILINE,
  165. default=None)
  166. if items_json is None:
  167. CONTENT_ID_REGEXES = [
  168. r'YUI\.namespace\("Media"\)\.CONTENT_ID\s*=\s*"([^"]+)"',
  169. r'root\.App\.Cache\.context\.videoCache\.curVideo = \{"([^"]+)"',
  170. r'"first_videoid"\s*:\s*"([^"]+)"',
  171. r'%s[^}]*"ccm_id"\s*:\s*"([^"]+)"' % re.escape(page_id),
  172. ]
  173. video_id = self._search_regex(CONTENT_ID_REGEXES, webpage, 'content ID')
  174. else:
  175. items = json.loads(items_json)
  176. info = items['mediaItems']['query']['results']['mediaObj'][0]
  177. # The 'meta' field is not always in the video webpage, we request it
  178. # from another page
  179. video_id = info['id']
  180. return self._get_info(video_id, display_id, webpage)
  181. def _get_info(self, video_id, display_id, webpage):
  182. region = self._search_regex(
  183. r'\\?"region\\?"\s*:\s*\\?"([^"]+?)\\?"',
  184. webpage, 'region', fatal=False, default='US')
  185. data = compat_urllib_parse.urlencode({
  186. 'protocol': 'http',
  187. 'region': region,
  188. })
  189. query_url = (
  190. 'https://video.media.yql.yahoo.com/v1/video/sapi/streams/'
  191. '{id}?{data}'.format(id=video_id, data=data))
  192. query_result = self._download_json(
  193. query_url, display_id, 'Downloading video info')
  194. info = query_result['query']['results']['mediaObj'][0]
  195. meta = info.get('meta')
  196. if not meta:
  197. msg = info['status'].get('msg')
  198. if msg:
  199. raise ExtractorError(
  200. '%s returned error: %s' % (self.IE_NAME, msg), expected=True)
  201. raise ExtractorError('Unable to extract media object meta')
  202. formats = []
  203. for s in info['streams']:
  204. format_info = {
  205. 'width': int_or_none(s.get('width')),
  206. 'height': int_or_none(s.get('height')),
  207. 'tbr': int_or_none(s.get('bitrate')),
  208. }
  209. host = s['host']
  210. path = s['path']
  211. if host.startswith('rtmp'):
  212. format_info.update({
  213. 'url': host,
  214. 'play_path': path,
  215. 'ext': 'flv',
  216. })
  217. else:
  218. format_url = compat_urlparse.urljoin(host, path)
  219. format_info['url'] = format_url
  220. formats.append(format_info)
  221. self._sort_formats(formats)
  222. return {
  223. 'id': video_id,
  224. 'display_id': display_id,
  225. 'title': unescapeHTML(meta['title']),
  226. 'formats': formats,
  227. 'description': clean_html(meta['description']),
  228. 'thumbnail': meta['thumbnail'] if meta.get('thumbnail') else self._og_search_thumbnail(webpage),
  229. 'duration': int_or_none(meta.get('duration')),
  230. }
  231. class YahooSearchIE(SearchInfoExtractor):
  232. IE_DESC = 'Yahoo screen search'
  233. _MAX_RESULTS = 1000
  234. IE_NAME = 'screen.yahoo:search'
  235. _SEARCH_KEY = 'yvsearch'
  236. def _get_n_results(self, query, n):
  237. """Get a specified number of results for a query"""
  238. entries = []
  239. for pagenum in itertools.count(0):
  240. 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)
  241. info = self._download_json(result_url, query,
  242. note='Downloading results page ' + str(pagenum + 1))
  243. m = info['m']
  244. results = info['results']
  245. for (i, r) in enumerate(results):
  246. if (pagenum * 30) + i >= n:
  247. break
  248. mobj = re.search(r'(?P<url>screen\.yahoo\.com/.*?-\d*?\.html)"', r)
  249. e = self.url_result('http://' + mobj.group('url'), 'Yahoo')
  250. entries.append(e)
  251. if (pagenum * 30 + i >= n) or (m['last'] >= (m['total'] - 1)):
  252. break
  253. return {
  254. '_type': 'playlist',
  255. 'id': query,
  256. 'entries': entries,
  257. }