yahoo.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  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. class YahooIE(InfoExtractor):
  18. IE_DESC = 'Yahoo screen and movies'
  19. _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)'
  20. _TESTS = [
  21. {
  22. 'url': 'http://screen.yahoo.com/julian-smith-travis-legg-watch-214727115.html',
  23. 'md5': '4962b075c08be8690a922ee026d05e69',
  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/taipei-opinion-poll/選情站報-街頭民調-台北市篇-102823042.html',
  56. 'md5': '92a7fdd8a08783c68a174d7aa067dde8',
  57. 'info_dict': {
  58. 'id': '7a23b569-7bea-36cb-85b9-bd5301a0a1fb',
  59. 'ext': 'mp4',
  60. 'title': '選情站報 街頭民調 台北市篇',
  61. 'description': '選情站報 街頭民調 台北市篇',
  62. 'duration': 429,
  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/20-most-valuable-brands-world-112600775.html',
  88. 'md5': '3e401e4eed6325aa29d9b96125fd5b4f',
  89. 'info_dict': {
  90. 'id': 'c1b4c09c-8ed8-3b65-8b05-169c55358a83',
  91. 'ext': 'mp4',
  92. 'title': "Apple Is The World's Most Valuable Brand",
  93. 'description': 'md5:73eabc1a11c6f59752593b2ceefa1262',
  94. 'duration': 21,
  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. ]
  131. def _real_extract(self, url):
  132. mobj = re.match(self._VALID_URL, url)
  133. display_id = mobj.group('display_id')
  134. page_id = mobj.group('id')
  135. url = mobj.group('url')
  136. host = mobj.group('host')
  137. webpage = self._download_webpage(url, display_id)
  138. # Look for iframed media first
  139. iframe_m = re.search(r'<iframe[^>]+src="(/video/.+?-\d+\.html\?format=embed.*?)"', webpage)
  140. if iframe_m:
  141. iframepage = self._download_webpage(
  142. host + iframe_m.group(1), display_id, 'Downloading iframe webpage')
  143. items_json = self._search_regex(
  144. r'mediaItems: (\[.+?\])$', iframepage, 'items', flags=re.MULTILINE, default=None)
  145. if items_json:
  146. items = json.loads(items_json)
  147. video_id = items[0]['id']
  148. return self._get_info(video_id, display_id, webpage)
  149. items_json = self._search_regex(
  150. r'mediaItems: ({.*?})$', webpage, 'items', flags=re.MULTILINE,
  151. default=None)
  152. if items_json is None:
  153. CONTENT_ID_REGEXES = [
  154. r'YUI\.namespace\("Media"\)\.CONTENT_ID\s*=\s*"([^"]+)"',
  155. r'root\.App\.Cache\.context\.videoCache\.curVideo = \{"([^"]+)"',
  156. r'"first_videoid"\s*:\s*"([^"]+)"',
  157. r'%s[^}]*"ccm_id"\s*:\s*"([^"]+)"' % re.escape(page_id),
  158. ]
  159. video_id = self._search_regex(CONTENT_ID_REGEXES, webpage, 'content ID')
  160. else:
  161. items = json.loads(items_json)
  162. info = items['mediaItems']['query']['results']['mediaObj'][0]
  163. # The 'meta' field is not always in the video webpage, we request it
  164. # from another page
  165. video_id = info['id']
  166. return self._get_info(video_id, display_id, webpage)
  167. def _get_info(self, video_id, display_id, webpage):
  168. region = self._search_regex(
  169. r'\\?"region\\?"\s*:\s*\\?"([^"]+?)\\?"',
  170. webpage, 'region', fatal=False, default='US')
  171. query = ('SELECT * FROM yahoo.media.video.streams WHERE id="%s"'
  172. ' AND plrs="86Gj0vCaSzV_Iuf6hNylf2" AND region="%s"'
  173. ' AND protocol="http"' % (video_id, region))
  174. data = compat_urllib_parse.urlencode({
  175. 'q': query,
  176. 'env': 'prod',
  177. 'format': 'json',
  178. })
  179. query_result = self._download_json(
  180. 'http://video.query.yahoo.com/v1/public/yql?' + data,
  181. display_id, 'Downloading video info')
  182. info = query_result['query']['results']['mediaObj'][0]
  183. meta = info.get('meta')
  184. if not meta:
  185. msg = info['status'].get('msg')
  186. if msg:
  187. raise ExtractorError(
  188. '%s returned error: %s' % (self.IE_NAME, msg), expected=True)
  189. raise ExtractorError('Unable to extract media object meta')
  190. formats = []
  191. for s in info['streams']:
  192. format_info = {
  193. 'width': int_or_none(s.get('width')),
  194. 'height': int_or_none(s.get('height')),
  195. 'tbr': int_or_none(s.get('bitrate')),
  196. }
  197. host = s['host']
  198. path = s['path']
  199. if host.startswith('rtmp'):
  200. format_info.update({
  201. 'url': host,
  202. 'play_path': path,
  203. 'ext': 'flv',
  204. })
  205. else:
  206. format_url = compat_urlparse.urljoin(host, path)
  207. format_info['url'] = format_url
  208. formats.append(format_info)
  209. self._sort_formats(formats)
  210. return {
  211. 'id': video_id,
  212. 'display_id': display_id,
  213. 'title': unescapeHTML(meta['title']),
  214. 'formats': formats,
  215. 'description': clean_html(meta['description']),
  216. 'thumbnail': meta['thumbnail'] if meta.get('thumbnail') else self._og_search_thumbnail(webpage),
  217. 'duration': int_or_none(meta.get('duration')),
  218. }
  219. class YahooSearchIE(SearchInfoExtractor):
  220. IE_DESC = 'Yahoo screen search'
  221. _MAX_RESULTS = 1000
  222. IE_NAME = 'screen.yahoo:search'
  223. _SEARCH_KEY = 'yvsearch'
  224. def _get_n_results(self, query, n):
  225. """Get a specified number of results for a query"""
  226. entries = []
  227. for pagenum in itertools.count(0):
  228. 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)
  229. info = self._download_json(result_url, query,
  230. note='Downloading results page ' + str(pagenum + 1))
  231. m = info['m']
  232. results = info['results']
  233. for (i, r) in enumerate(results):
  234. if (pagenum * 30) + i >= n:
  235. break
  236. mobj = re.search(r'(?P<url>screen\.yahoo\.com/.*?-\d*?\.html)"', r)
  237. e = self.url_result('http://' + mobj.group('url'), 'Yahoo')
  238. entries.append(e)
  239. if (pagenum * 30 + i >= n) or (m['last'] >= (m['total'] - 1)):
  240. break
  241. return {
  242. '_type': 'playlist',
  243. 'id': query,
  244. 'entries': entries,
  245. }