[Yahoo/NBCSports] Fix #5226
[youtube-dl] / youtube_dl / extractor / nbc.py
1 from __future__ import unicode_literals
2
3 import re
4
5 from .common import InfoExtractor
6 from ..compat import (
7     compat_str,
8     compat_HTTPError,
9 )
10 from ..utils import (
11     ExtractorError,
12     find_xpath_attr,
13 )
14
15
16 class NBCIE(InfoExtractor):
17     _VALID_URL = r'https?://www\.nbc\.com/(?:[^/]+/)+(?P<id>n?\d+)'
18
19     _TESTS = [
20         {
21             'url': 'http://www.nbc.com/the-tonight-show/segments/112966',
22             # md5 checksum is not stable
23             'info_dict': {
24                 'id': 'c9xnCo0YPOPH',
25                 'ext': 'flv',
26                 'title': 'Jimmy Fallon Surprises Fans at Ben & Jerry\'s',
27                 'description': 'Jimmy gives out free scoops of his new "Tonight Dough" ice cream flavor by surprising customers at the Ben & Jerry\'s scoop shop.',
28             },
29         },
30         {
31             'url': 'http://www.nbc.com/the-tonight-show/episodes/176',
32             'info_dict': {
33                 'id': 'XwU9KZkp98TH',
34                 'ext': 'flv',
35                 'title': 'Ricky Gervais, Steven Van Zandt, ILoveMakonnen',
36                 'description': 'A brand new episode of The Tonight Show welcomes Ricky Gervais, Steven Van Zandt and ILoveMakonnen.',
37             },
38             'skip': 'Only works from US',
39         },
40     ]
41
42     def _real_extract(self, url):
43         video_id = self._match_id(url)
44         webpage = self._download_webpage(url, video_id)
45         theplatform_url = self._search_regex(
46             '(?:class="video-player video-player-full" data-mpx-url|class="player" src)="(.*?)"',
47             webpage, 'theplatform url').replace('_no_endcard', '')
48         if theplatform_url.startswith('//'):
49             theplatform_url = 'http:' + theplatform_url
50         return self.url_result(theplatform_url)
51
52
53 class NBCSportsIE(InfoExtractor):
54     _VALID_URL = r'https?://vplayer\.nbcsports\.com/(?:[^/]+/)+(?P<id>[0-9a-zA-Z]+)'
55
56     _TEST = {
57         'url': 'https://vplayer.nbcsports.com/p/BxmELC/nbcsports_share/select/9CsDKds0kvHI',
58         'md5': 'ceae8dced5c14a1c1ffcb7a32194cca5',
59         'info_dict': {
60             'id': '9CsDKds0kvHI',
61             'ext': 'flv',
62             'description': 'md5:df390f70a9ba7c95ff1daace988f0d8d',
63             'title': 'Tyler Kalinoski hits buzzer-beater to lift Davidson',
64         }
65     }
66
67     def _real_extract(self, url):
68         video_id = self._match_id(url)
69         webpage = self._download_webpage(url, video_id)
70         theplatform_url = self._og_search_video_url(webpage)
71         return self.url_result(theplatform_url, 'ThePlatform')
72
73
74 class NBCNewsIE(InfoExtractor):
75     _VALID_URL = r'''(?x)https?://(?:www\.)?nbcnews\.com/
76         (?:video/.+?/(?P<id>\d+)|
77         (?:feature|nightly-news)/[^/]+/(?P<title>.+))
78         '''
79
80     _TESTS = [
81         {
82             'url': 'http://www.nbcnews.com/video/nbc-news/52753292',
83             'md5': '47abaac93c6eaf9ad37ee6c4463a5179',
84             'info_dict': {
85                 'id': '52753292',
86                 'ext': 'flv',
87                 'title': 'Crew emerges after four-month Mars food study',
88                 'description': 'md5:24e632ffac72b35f8b67a12d1b6ddfc1',
89             },
90         },
91         {
92             'url': 'http://www.nbcnews.com/feature/edward-snowden-interview/how-twitter-reacted-snowden-interview-n117236',
93             'md5': 'b2421750c9f260783721d898f4c42063',
94             'info_dict': {
95                 'id': 'I1wpAI_zmhsQ',
96                 'ext': 'mp4',
97                 'title': 'How Twitter Reacted To The Snowden Interview',
98                 'description': 'md5:65a0bd5d76fe114f3c2727aa3a81fe64',
99             },
100             'add_ie': ['ThePlatform'],
101         },
102         {
103             'url': 'http://www.nbcnews.com/feature/dateline-full-episodes/full-episode-family-business-n285156',
104             'md5': 'fdbf39ab73a72df5896b6234ff98518a',
105             'info_dict': {
106                 'id': 'Wjf9EDR3A_60',
107                 'ext': 'mp4',
108                 'title': 'FULL EPISODE: Family Business',
109                 'description': 'md5:757988edbaae9d7be1d585eb5d55cc04',
110             },
111         },
112         {
113             'url': 'http://www.nbcnews.com/nightly-news/video/nightly-news-with-brian-williams-full-broadcast-february-4-394064451844',
114             'md5': 'b5dda8cddd8650baa0dcb616dd2cf60d',
115             'info_dict': {
116                 'id': 'sekXqyTVnmN3',
117                 'ext': 'mp4',
118                 'title': 'Nightly News with Brian Williams Full Broadcast (February 4)',
119                 'description': 'md5:1c10c1eccbe84a26e5debb4381e2d3c5',
120             },
121         },
122     ]
123
124     def _real_extract(self, url):
125         mobj = re.match(self._VALID_URL, url)
126         video_id = mobj.group('id')
127         if video_id is not None:
128             all_info = self._download_xml('http://www.nbcnews.com/id/%s/displaymode/1219' % video_id, video_id)
129             info = all_info.find('video')
130
131             return {
132                 'id': video_id,
133                 'title': info.find('headline').text,
134                 'ext': 'flv',
135                 'url': find_xpath_attr(info, 'media', 'type', 'flashVideo').text,
136                 'description': compat_str(info.find('caption').text),
137                 'thumbnail': find_xpath_attr(info, 'media', 'type', 'thumbnail').text,
138             }
139         else:
140             # "feature" and "nightly-news" pages use theplatform.com
141             title = mobj.group('title')
142             webpage = self._download_webpage(url, title)
143             bootstrap_json = self._search_regex(
144                 r'var\s+(?:bootstrapJson|playlistData)\s*=\s*({.+});?\s*$',
145                 webpage, 'bootstrap json', flags=re.MULTILINE)
146             bootstrap = self._parse_json(bootstrap_json, video_id)
147             info = bootstrap['results'][0]['video']
148             mpxid = info['mpxId']
149
150             base_urls = [
151                 info['fallbackPlaylistUrl'],
152                 info['associatedPlaylistUrl'],
153             ]
154
155             for base_url in base_urls:
156                 if not base_url:
157                     continue
158                 playlist_url = base_url + '?form=MPXNBCNewsAPI'
159
160                 try:
161                     all_videos = self._download_json(playlist_url, title)
162                 except ExtractorError as ee:
163                     if isinstance(ee.cause, compat_HTTPError):
164                         continue
165                     raise
166
167                 if not all_videos or 'videos' not in all_videos:
168                     continue
169
170                 try:
171                     info = next(v for v in all_videos['videos'] if v['mpxId'] == mpxid)
172                     break
173                 except StopIteration:
174                     continue
175
176             if info is None:
177                 raise ExtractorError('Could not find video in playlists')
178
179             return {
180                 '_type': 'url',
181                 # We get the best quality video
182                 'url': info['videoAssets'][-1]['publicUrl'],
183                 'ie_key': 'ThePlatform',
184             }