]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/yahoo.py
   2 from __future__ 
import unicode_literals
 
   8 from .common 
import InfoExtractor
, SearchInfoExtractor
 
  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)' 
  26             'url': 'http://screen.yahoo.com/julian-smith-travis-legg-watch-214727115.html', 
  28                 'id': '2d25e626-2378-391f-ada0-ddaf1417e588', 
  30                 'title': 'Julian Smith & Travis Legg Watch Julian Smith', 
  31                 'description': 'Julian and Travis watch Julian Smith', 
  36             'url': 'http://screen.yahoo.com/wired/codefellas-s1-ep12-cougar-lies-103000935.html', 
  37             'md5': 'd6e6fc6e1313c608f316ddad7b82b306', 
  39                 'id': 'd1dedf8c-d58c-38c3-8963-e899929ae0a9', 
  41                 'title': 'Codefellas - The Cougar Lies with Spanish Moss', 
  42                 'description': 'md5:66b627ab0a282b26352136ca96ce73c1', 
  47             'url': 'https://screen.yahoo.com/community/community-sizzle-reel-203225340.html?format=embed', 
  48             'md5': '60e8ac193d8fb71997caa8fce54c6460', 
  50                 'id': '4fe78544-8d48-39d8-97cd-13f205d9fcdb', 
  52                 'title': "Yahoo Saves 'Community'", 
  53                 'description': 'md5:4d4145af2fd3de00cbb6c1d664105053', 
  58             'url': 'https://tw.screen.yahoo.com/election-2014-askmayor/敢問市長-黃秀霜批賴清德-非常高傲-033009720.html', 
  59             'md5': '3a09cf59349cfaddae1797acc3c087fc', 
  61                 'id': 'cac903b3-fcf4-3c14-b632-643ab541712f', 
  63                 'title': '敢問市長/黃秀霜批賴清德「非常高傲」', 
  64                 'description': '直言台南沒捷運 交通居五都之末', 
  69             'url': 'https://uk.screen.yahoo.com/editor-picks/cute-raccoon-freed-drain-using-091756545.html', 
  70             'md5': '0b51660361f0e27c9789e7037ef76f4b', 
  72                 'id': 'b3affa53-2e14-3590-852b-0e0db6cd1a58', 
  74                 'title': 'Cute Raccoon Freed From Drain\u00a0Using Angle Grinder', 
  75                 'description': 'md5:f66c890e1490f4910a9953c941dee944', 
  80             'url': 'https://ca.sports.yahoo.com/video/program-makes-hockey-more-affordable-013127711.html', 
  81             'md5': '57e06440778b1828a6079d2f744212c4', 
  83                 'id': 'c9fa2a36-0d4d-3937-b8f6-cc0fb1881e73', 
  85                 'title': 'Program that makes hockey more affordable not offered in Manitoba', 
  86                 'description': 'md5:c54a609f4c078d92b74ffb9bf1f496f4', 
  90             'url': 'https://ca.finance.yahoo.com/news/hackers-sony-more-trouble-well-154609075.html', 
  91             'md5': '226a895aae7e21b0129e2a2006fe9690', 
  93                 'id': 'e624c4bc-3389-34de-9dfc-025f74943409', 
  95                 'title': '\'The Interview\' TV Spot: War', 
  96                 'description': 'The Interview', 
 100             'url': 'http://news.yahoo.com/video/china-moses-crazy-blues-104538833.html', 
 101             'md5': '67010fdf3a08d290e060a4dd96baa07b', 
 103                 'id': 'f885cf7f-43d4-3450-9fac-46ac30ece521', 
 105                 'title': 'China Moses Is Crazy About the Blues', 
 106                 'description': 'md5:9900ab8cd5808175c7b3fe55b979bed0', 
 110             'url': 'https://in.lifestyle.yahoo.com/video/connect-dots-dark-side-virgo-090247395.html', 
 111             'md5': 'd9a083ccf1379127bf25699d67e4791b', 
 113                 'id': '52aeeaa3-b3d1-30d8-9ef8-5d0cf05efb7c', 
 115                 'title': 'Connect the Dots: Dark Side of Virgo', 
 116                 'description': 'md5:1428185051cfd1949807ad4ff6d3686a', 
 120             'url': 'https://www.yahoo.com/movies/v/true-story-trailer-173000497.html', 
 121             'md5': '989396ae73d20c6f057746fb226aa215', 
 123                 'id': '071c4013-ce30-3a93-a5b2-e0413cd4a9d1', 
 125                 'title': '\'True Story\' Trailer', 
 126                 'description': 'True Story', 
 130             'url': 'https://gma.yahoo.com/pizza-delivery-man-surprised-huge-tip-college-kids-195200785.html', 
 131             'only_matching': True, 
 135     def _real_extract(self
, url
): 
 136         mobj 
= re
.match(self
._VALID
_URL
, url
) 
 137         display_id 
= mobj
.group('display_id') 
 138         page_id 
= mobj
.group('id') 
 139         url 
= mobj
.group('url') 
 140         host 
= mobj
.group('host') 
 141         webpage 
= self
._download
_webpage
(url
, display_id
) 
 143         # Look for iframed media first 
 144         iframe_m 
= re
.search(r
'<iframe[^>]+src="(/video/.+?-\d+\.html\?format=embed.*?)"', webpage
) 
 146             iframepage 
= self
._download
_webpage
( 
 147                 host 
+ iframe_m
.group(1), display_id
, 'Downloading iframe webpage') 
 148             items_json 
= self
._search
_regex
( 
 149                 r
'mediaItems: (\[.+?\])$', iframepage
, 'items', flags
=re
.MULTILINE
, default
=None) 
 151                 items 
= json
.loads(items_json
) 
 152                 video_id 
= items
[0]['id'] 
 153                 return self
._get
_info
(video_id
, display_id
, webpage
) 
 155         items_json 
= self
._search
_regex
( 
 156             r
'mediaItems: ({.*?})$', webpage
, 'items', flags
=re
.MULTILINE
, 
 158         if items_json 
is None: 
 159             CONTENT_ID_REGEXES 
= [ 
 160                 r
'YUI\.namespace\("Media"\)\.CONTENT_ID\s*=\s*"([^"]+)"', 
 161                 r
'root\.App\.Cache\.context\.videoCache\.curVideo = \{"([^"]+)"', 
 162                 r
'"first_videoid"\s*:\s*"([^"]+)"', 
 163                 r
'%s[^}]*"ccm_id"\s*:\s*"([^"]+)"' % re
.escape(page_id
), 
 165             video_id 
= self
._search
_regex
(CONTENT_ID_REGEXES
, webpage
, 'content ID') 
 167             items 
= json
.loads(items_json
) 
 168             info 
= items
['mediaItems']['query']['results']['mediaObj'][0] 
 169             # The 'meta' field is not always in the video webpage, we request it 
 171             video_id 
= info
['id'] 
 172         return self
._get
_info
(video_id
, display_id
, webpage
) 
 174     def _get_info(self
, video_id
, display_id
, webpage
): 
 175         region 
= self
._search
_regex
( 
 176             r
'\\?"region\\?"\s*:\s*\\?"([^"]+?)\\?"', 
 177             webpage
, 'region', fatal
=False, default
='US') 
 178         data 
= compat_urllib_parse
.urlencode({ 
 183             'https://video.media.yql.yahoo.com/v1/video/sapi/streams/' 
 184             '{id}?{data}'.format(id=video_id
, data
=data
)) 
 185         query_result 
= self
._download
_json
( 
 186             query_url
, display_id
, 'Downloading video info') 
 188         info 
= query_result
['query']['results']['mediaObj'][0] 
 189         meta 
= info
.get('meta') 
 192             msg 
= info
['status'].get('msg') 
 194                 raise ExtractorError( 
 195                     '%s returned error: %s' % (self
.IE_NAME
, msg
), expected
=True) 
 196             raise ExtractorError('Unable to extract media object meta') 
 199         for s 
in info
['streams']: 
 201                 'width': int_or_none(s
.get('width')), 
 202                 'height': int_or_none(s
.get('height')), 
 203                 'tbr': int_or_none(s
.get('bitrate')), 
 208             if host
.startswith('rtmp'): 
 215                 format_url 
= compat_urlparse
.urljoin(host
, path
) 
 216                 format_info
['url'] = format_url
 
 217             formats
.append(format_info
) 
 219         self
._sort
_formats
(formats
) 
 223             'display_id': display_id
, 
 224             'title': unescapeHTML(meta
['title']), 
 226             'description': clean_html(meta
['description']), 
 227             'thumbnail': meta
['thumbnail'] if meta
.get('thumbnail') else self
._og
_search
_thumbnail
(webpage
), 
 228             'duration': int_or_none(meta
.get('duration')), 
 232 class YahooSearchIE(SearchInfoExtractor
): 
 233     IE_DESC 
= 'Yahoo screen search' 
 235     IE_NAME 
= 'screen.yahoo:search' 
 236     _SEARCH_KEY 
= 'yvsearch' 
 238     def _get_n_results(self
, query
, n
): 
 239         """Get a specified number of results for a query""" 
 241         for pagenum 
in itertools
.count(0): 
 242             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) 
 243             info 
= self
._download
_json
(result_url
, query
, 
 244                                        note
='Downloading results page ' + str(pagenum 
+ 1)) 
 246             results 
= info
['results'] 
 248             for (i
, r
) in enumerate(results
): 
 249                 if (pagenum 
* 30) + i 
>= n
: 
 251                 mobj 
= re
.search(r
'(?P<url>screen\.yahoo\.com/.*?-\d*?\.html)"', r
) 
 252                 e 
= self
.url_result('http://' + mobj
.group('url'), 'Yahoo') 
 254             if (pagenum 
* 30 + i 
>= n
) or (m
['last'] >= (m
['total'] - 1)):