]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/mtv.py
release 2017.10.01
[yt-dlp.git] / youtube_dl / extractor / mtv.py
CommitLineData
32dac694
PH
1from __future__ import unicode_literals
2
fc287219 3import re
fc287219 4
0af25f78 5from .common import InfoExtractor
1cc79574 6from ..compat import (
e525d9a3 7 compat_str,
20a6a154 8 compat_xpath,
1cc79574
PH
9)
10from ..utils import (
fc287219 11 ExtractorError,
90834c78 12 find_xpath_attr,
5aafe895 13 fix_xml_ampersands,
8765151c 14 float_or_none,
0ef68e04 15 HEADRequest,
0c75abbb 16 RegexNotFoundError,
5c2266df 17 sanitized_Request,
7cdfc4c9 18 strip_or_none,
712c7530 19 timeconvert,
adf063da 20 try_get,
340b0468 21 unescapeHTML,
0c75abbb 22 update_url_query,
8d9453b9 23 url_basename,
5767b4ee 24 xpath_text,
fc287219
PH
25)
26
90834c78 27
300fcad8
JMF
28def _media_xml_tag(tag):
29 return '{http://search.yahoo.com/mrss/}%s' % tag
fc287219 30
f7e02595 31
0af25f78 32class MTVServicesInfoExtractor(InfoExtractor):
340b0468 33 _MOBILE_TEMPLATE = None
a542e372 34 _LANG = None
8940c1c0 35
f7e02595
JMF
36 @staticmethod
37 def _id_from_uri(uri):
38 return uri.split(':')[-1]
39
0c75abbb
YCH
40 @staticmethod
41 def _remove_template_parameter(url):
42 # Remove the templates, like &device={device}
43 return re.sub(r'&[^=]*?={.*?}(?=(&|$))', '', url)
44
8940c1c0
JMF
45 def _get_feed_url(self, uri):
46 return self._FEED_URL
47
ab2f744b 48 def _get_thumbnail_url(self, uri, itemdoc):
84db8181
JMF
49 search_path = '%s/%s' % (_media_xml_tag('group'), _media_xml_tag('thumbnail'))
50 thumb_node = itemdoc.find(search_path)
51 if thumb_node is None:
52 return None
70bfab0e 53 return thumb_node.get('url') or thumb_node.text or None
f7e02595 54
340b0468
JMF
55 def _extract_mobile_video_formats(self, mtvn_id):
56 webpage_url = self._MOBILE_TEMPLATE % mtvn_id
5c2266df 57 req = sanitized_Request(webpage_url)
340b0468 58 # Otherwise we get a webpage that would execute some javascript
3fcfb8e9 59 req.add_header('User-Agent', 'curl/7')
340b0468 60 webpage = self._download_webpage(req, mtvn_id,
9e1a5b84 61 'Downloading mobile page')
0ef68e04
JMF
62 metrics_url = unescapeHTML(self._search_regex(r'<a href="(http://metrics.+?)"', webpage, 'url'))
63 req = HEADRequest(metrics_url)
64 response = self._request_webpage(req, mtvn_id, 'Resolving url')
65 url = response.geturl()
66 # Transform the url to get the best quality:
67 url = re.sub(r'.+pxE=mp4', 'http://mtvnmobile.vo.llnwd.net/kip0/_pxn=0+_pxK=18639+_pxE=mp4', url, 1)
5f6a1245 68 return [{'url': url, 'ext': 'mp4'}]
340b0468 69
dbaf6016 70 def _extract_video_formats(self, mdoc, mtvn_id, video_id):
054d43bb 71 if re.match(r'.*/(error_country_block\.swf|geoblock\.mp4|copyright_error\.flv(?:\?geo\b.+?)?)$', mdoc.find('.//src').text) is not None:
340b0468 72 if mtvn_id is not None and self._MOBILE_TEMPLATE is not None:
0ef68e04 73 self.to_screen('The normal version is not available from your '
9e1a5b84 74 'country, trying with the mobile version')
340b0468 75 return self._extract_mobile_video_formats(mtvn_id)
cc1db7f9 76 raise ExtractorError('This video is not available from your country.',
9e1a5b84 77 expected=True)
f7e02595 78
f13d0933
PH
79 formats = []
80 for rendition in mdoc.findall('.//rendition'):
20faad74 81 if rendition.get('method') == 'hls':
dbaf6016 82 hls_url = rendition.find('./src').text
cdd11c05 83 formats.extend(self._extract_m3u8_formats(
adf063da 84 hls_url, video_id, ext='mp4', entry_protocol='m3u8_native',
e0f1fb0a 85 m3u8_id='hls', fatal=False))
dbaf6016
PH
86 else:
87 # fms
88 try:
89 _, _, ext = rendition.attrib['type'].partition('/')
90 rtmp_video_url = rendition.find('./src').text
adf063da
S
91 if 'error_not_available.swf' in rtmp_video_url:
92 raise ExtractorError(
93 '%s said: video is not available' % self.IE_NAME,
94 expected=True)
dbaf6016
PH
95 if rtmp_video_url.endswith('siteunavail.png'):
96 continue
dbaf6016 97 formats.extend([{
adf063da
S
98 'ext': 'flv' if rtmp_video_url.startswith('rtmp') else ext,
99 'url': rtmp_video_url,
100 'format_id': '-'.join(filter(None, [
101 'rtmp' if rtmp_video_url.startswith('rtmp') else None,
102 rendition.get('bitrate')])),
dbaf6016
PH
103 'width': int(rendition.get('width')),
104 'height': int(rendition.get('height')),
adf063da 105 }])
dbaf6016
PH
106 except (KeyError, TypeError):
107 raise ExtractorError('Invalid rendition field.')
e0f1fb0a
S
108 if formats:
109 self._sort_formats(formats)
f13d0933 110 return formats
f7e02595 111
e525d9a3
S
112 def _extract_subtitles(self, mdoc, mtvn_id):
113 subtitles = {}
e525d9a3
S
114 for transcript in mdoc.findall('.//transcript'):
115 if transcript.get('kind') != 'captions':
116 continue
117 lang = transcript.get('srclang')
0af25f78
JMF
118 subtitles[lang] = [{
119 'url': compat_str(typographic.get('src')),
120 'ext': typographic.get('format')
121 } for typographic in transcript.findall('./typographic')]
122 return subtitles
e525d9a3 123
67fc365b 124 def _get_video_info(self, itemdoc, use_hls=True):
f7e02595
JMF
125 uri = itemdoc.find('guid').text
126 video_id = self._id_from_uri(uri)
127 self.report_extraction(video_id)
04cbc498 128 content_el = itemdoc.find('%s/%s' % (_media_xml_tag('group'), _media_xml_tag('content')))
0c75abbb 129 mediagen_url = self._remove_template_parameter(content_el.attrib['url'])
dbaf6016 130 mediagen_url = mediagen_url.replace('device={device}', '')
f7e02595 131 if 'acceptMethods' not in mediagen_url:
56f447be 132 mediagen_url += '&' if '?' in mediagen_url else '?'
dbaf6016
PH
133 mediagen_url += 'acceptMethods='
134 mediagen_url += 'hls' if use_hls else 'fms'
6562df76 135
e0f1fb0a
S
136 mediagen_doc = self._download_xml(
137 mediagen_url, video_id, 'Downloading video urls', fatal=False)
138
139 if mediagen_doc is False:
140 return None
f7e02595 141
0dfe9bc9
S
142 item = mediagen_doc.find('./video/item')
143 if item is not None and item.get('type') == 'text':
144 message = '%s returned error: ' % self.IE_NAME
145 if item.get('code') is not None:
146 message += '%s - ' % item.get('code')
147 message += item.text
148 raise ExtractorError(message, expected=True)
149
7cdfc4c9 150 description = strip_or_none(xpath_text(itemdoc, 'description'))
f13d0933 151
712c7530
YCH
152 timestamp = timeconvert(xpath_text(itemdoc, 'pubDate'))
153
90834c78
PH
154 title_el = None
155 if title_el is None:
156 title_el = find_xpath_attr(
157 itemdoc, './/{http://search.yahoo.com/mrss/}category',
158 'scheme', 'urn:mtvn:video_title')
90834c78 159 if title_el is None:
20a6a154 160 title_el = itemdoc.find(compat_xpath('.//{http://search.yahoo.com/mrss/}title'))
96cb10a5 161 if title_el is None:
20a6a154 162 title_el = itemdoc.find(compat_xpath('.//title'))
1df4229b
PH
163 if title_el.text is None:
164 title_el = None
1df4229b 165
90834c78
PH
166 title = title_el.text
167 if title is None:
168 raise ExtractorError('Could not find video title')
780ee4e5 169 title = title.strip()
90834c78 170
340b0468
JMF
171 # This a short id that's used in the webpage urls
172 mtvn_id = None
173 mtvn_id_node = find_xpath_attr(itemdoc, './/{http://search.yahoo.com/mrss/}category',
9e1a5b84 174 'scheme', 'urn:mtvn:id')
340b0468
JMF
175 if mtvn_id_node is not None:
176 mtvn_id = mtvn_id_node.text
177
dbaf6016
PH
178 formats = self._extract_video_formats(mediagen_doc, mtvn_id, video_id)
179
e0f1fb0a
S
180 # Some parts of complete video may be missing (e.g. missing Act 3 in
181 # http://www.southpark.de/alle-episoden/s14e01-sexual-healing)
182 if not formats:
183 return None
184
185 self._sort_formats(formats)
186
fb7abb31 187 return {
90834c78 188 'title': title,
dbaf6016 189 'formats': formats,
e525d9a3 190 'subtitles': self._extract_subtitles(mediagen_doc, mtvn_id),
f13d0933
PH
191 'id': video_id,
192 'thumbnail': self._get_thumbnail_url(uri, itemdoc),
193 'description': description,
04cbc498 194 'duration': float_or_none(content_el.attrib.get('duration')),
712c7530 195 'timestamp': timestamp,
f13d0933
PH
196 }
197
c1e90619 198 def _get_feed_query(self, uri):
199 data = {'uri': uri}
200 if self._LANG:
201 data['lang'] = self._LANG
0c75abbb 202 return data
c1e90619 203
67fc365b 204 def _get_videos_info(self, uri, use_hls=True):
f7e02595 205 video_id = self._id_from_uri(uri)
8940c1c0 206 feed_url = self._get_feed_url(uri)
0c75abbb 207 info_url = update_url_query(feed_url, self._get_feed_query(uri))
dbaf6016 208 return self._get_videos_info_from_url(info_url, video_id, use_hls)
79fa9db0 209
67fc365b 210 def _get_videos_info_from_url(self, url, video_id, use_hls=True):
e2b38da9 211 idoc = self._download_xml(
79fa9db0 212 url, video_id,
32dac694 213 'Downloading info', transform_source=fix_xml_ampersands)
712c7530
YCH
214
215 title = xpath_text(idoc, './channel/title')
216 description = xpath_text(idoc, './channel/description')
217
e0f1fb0a
S
218 entries = []
219 for item in idoc.findall('.//item'):
220 info = self._get_video_info(item, use_hls)
221 if info:
222 entries.append(info)
223
5239075b 224 return self.playlist_result(
e0f1fb0a 225 entries, playlist_title=title, playlist_description=description)
fc287219 226
adf063da
S
227 def _extract_triforce_mgid(self, webpage, data_zone=None, video_id=None):
228 triforce_feed = self._parse_json(self._search_regex(
f1e70fc2 229 r'triforceManifestFeed\s*=\s*({.+?})\s*;\s*\n', webpage,
adf063da
S
230 'triforce feed', default='{}'), video_id, fatal=False)
231
232 data_zone = self._search_regex(
233 r'data-zone=(["\'])(?P<zone>.+?_lc_promo.*?)\1', webpage,
234 'data zone', default=data_zone, group='zone')
235
236 feed_url = try_get(
237 triforce_feed, lambda x: x['manifest']['zones'][data_zone]['feed'],
238 compat_str)
239 if not feed_url:
240 return
241
242 feed = self._download_json(feed_url, video_id, fatal=False)
243 if not feed:
244 return
245
246 return try_get(feed, lambda x: x['result']['data']['id'], compat_str)
247
248 def _extract_mgid(self, webpage):
8d9453b9 249 try:
4bbf139a
JMF
250 # the url can be http://media.mtvnservices.com/fb/{mgid}.swf
251 # or http://media.mtvnservices.com/{mgid}
252 og_url = self._og_search_video_url(webpage)
253 mgid = url_basename(og_url)
254 if mgid.endswith('.swf'):
255 mgid = mgid[:-4]
8d9453b9 256 except RegexNotFoundError:
b1298d8e
AMW
257 mgid = None
258
259 if mgid is None or ':' not in mgid:
b9381e43
JMF
260 mgid = self._search_regex(
261 [r'data-mgid="(.*?)"', r'swfobject.embedSWF\(".*?(mgid:.*?)"'],
fc42bc6e
S
262 webpage, 'mgid', default=None)
263
264 if not mgid:
265 sm4_embed = self._html_search_meta(
266 'sm4:video:embed', webpage, 'sm4 embed', default='')
267 mgid = self._search_regex(
adf063da
S
268 r'embed/(mgid:.+?)["\'&?/]', sm4_embed, 'mgid', default=None)
269
270 if not mgid:
271 mgid = self._extract_triforce_mgid(webpage)
272
c1e90619 273 return mgid
e525d9a3 274
c1e90619 275 def _real_extract(self, url):
276 title = url_basename(url)
277 webpage = self._download_webpage(url, title)
278 mgid = self._extract_mgid(webpage)
e525d9a3 279 videos_info = self._get_videos_info(mgid)
e525d9a3 280 return videos_info
8d9453b9 281
84db8181 282
8940c1c0
JMF
283class MTVServicesEmbeddedIE(MTVServicesInfoExtractor):
284 IE_NAME = 'mtvservices:embedded'
285 _VALID_URL = r'https?://media\.mtvnservices\.com/embed/(?P<mgid>.+?)(\?|/|$)'
286
287 _TEST = {
288 # From http://www.thewrap.com/peter-dinklage-sums-up-game-of-thrones-in-45-seconds-video/
289 'url': 'http://media.mtvnservices.com/embed/mgid:uma:video:mtv.com:1043906/cp~vid%3D1043906%26uri%3Dmgid%3Auma%3Avideo%3Amtv.com%3A1043906',
290 'md5': 'cb349b21a7897164cede95bd7bf3fbb9',
291 'info_dict': {
292 'id': '1043906',
293 'ext': 'mp4',
294 'title': 'Peter Dinklage Sums Up \'Game Of Thrones\' In 45 Seconds',
295 'description': '"Sexy sexy sexy, stabby stabby stabby, beautiful language," says Peter Dinklage as he tries summarizing "Game of Thrones" in under a minute.',
712c7530
YCH
296 'timestamp': 1400126400,
297 'upload_date': '20140515',
8940c1c0
JMF
298 },
299 }
300
fe1d858e
S
301 @staticmethod
302 def _extract_url(webpage):
303 mobj = re.search(
304 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//media.mtvnservices.com/embed/.+?)\1', webpage)
305 if mobj:
306 return mobj.group('url')
307
8940c1c0
JMF
308 def _get_feed_url(self, uri):
309 video_id = self._id_from_uri(uri)
0c75abbb
YCH
310 config = self._download_json(
311 'http://media.mtvnservices.com/pmt/e1/access/index.html?uri=%s&configtype=edge' % uri, video_id)
312 return self._remove_template_parameter(config['feedWithQueryParams'])
8940c1c0
JMF
313
314 def _real_extract(self, url):
315 mobj = re.match(self._VALID_URL, url)
316 mgid = mobj.group('mgid')
317 return self._get_videos_info(mgid)
318
319
84db8181 320class MTVIE(MTVServicesInfoExtractor):
a54ffb8a 321 IE_NAME = 'mtv'
cf0cabbe 322 _VALID_URL = r'https?://(?:www\.)?mtv\.com/(?:video-clips|(?:full-)?episodes)/(?P<id>[^/?#.]+)'
8add4bfe
RA
323 _FEED_URL = 'http://www.mtv.com/feeds/mrss/'
324
325 _TESTS = [{
326 'url': 'http://www.mtv.com/video-clips/vl8qof/unlocking-the-truth-trailer',
327 'md5': '1edbcdf1e7628e414a8c5dcebca3d32b',
328 'info_dict': {
329 'id': '5e14040d-18a4-47c4-a582-43ff602de88e',
330 'ext': 'mp4',
331 'title': 'Unlocking The Truth|July 18, 2016|1|101|Trailer',
332 'description': '"Unlocking the Truth" premieres August 17th at 11/10c.',
333 'timestamp': 1468846800,
334 'upload_date': '20160718',
335 },
336 }, {
337 'url': 'http://www.mtv.com/full-episodes/94tujl/unlocking-the-truth-gates-of-hell-season-1-ep-101',
338 'only_matching': True,
cf0cabbe
S
339 }, {
340 'url': 'http://www.mtv.com/episodes/g8xu7q/teen-mom-2-breaking-the-wall-season-7-ep-713',
341 'only_matching': True,
8add4bfe
RA
342 }]
343
344
008f2470
S
345class MTV81IE(InfoExtractor):
346 IE_NAME = 'mtv81'
347 _VALID_URL = r'https?://(?:www\.)?mtv81\.com/videos/(?P<id>[^/?#.]+)'
348
349 _TEST = {
350 'url': 'http://www.mtv81.com/videos/artist-to-watch/the-godfather-of-japanese-hip-hop-segment-1/',
351 'md5': '1edbcdf1e7628e414a8c5dcebca3d32b',
352 'info_dict': {
353 'id': '5e14040d-18a4-47c4-a582-43ff602de88e',
354 'ext': 'mp4',
355 'title': 'Unlocking The Truth|July 18, 2016|1|101|Trailer',
356 'description': '"Unlocking the Truth" premieres August 17th at 11/10c.',
357 'timestamp': 1468846800,
358 'upload_date': '20160718',
359 },
360 }
361
362 def _extract_mgid(self, webpage):
363 return self._search_regex(
364 r'getTheVideo\((["\'])(?P<id>mgid:.+?)\1', webpage,
365 'mgid', group='id')
366
367 def _real_extract(self, url):
368 video_id = self._match_id(url)
369 webpage = self._download_webpage(url, video_id)
370 mgid = self._extract_mgid(webpage)
371 return self.url_result('http://media.mtvnservices.com/embed/%s' % mgid)
372
373
8add4bfe 374class MTVVideoIE(MTVServicesInfoExtractor):
a54ffb8a 375 IE_NAME = 'mtv:video'
5c541b2c
JMF
376 _VALID_URL = r'''(?x)^https?://
377 (?:(?:www\.)?mtv\.com/videos/.+?/(?P<videoid>[0-9]+)/[^/]+$|
378 m\.mtv\.com/videos/video\.rbml\?.*?id=(?P<mgid>[^&]+))'''
84db8181
JMF
379
380 _FEED_URL = 'http://www.mtv.com/player/embed/AS3/rss/'
381
382 _TESTS = [
383 {
32dac694 384 'url': 'http://www.mtv.com/videos/misc/853555/ours-vh1-storytellers.jhtml',
32dac694
PH
385 'md5': '850f3f143316b1e71fa56a4edfd6e0f8',
386 'info_dict': {
ca0f500e
PH
387 'id': '853555',
388 'ext': 'mp4',
32dac694
PH
389 'title': 'Taylor Swift - "Ours (VH1 Storytellers)"',
390 'description': 'Album: Taylor Swift performs "Ours" for VH1 Storytellers at Harvey Mudd College.',
712c7530
YCH
391 'timestamp': 1352610000,
392 'upload_date': '20121111',
84db8181
JMF
393 },
394 },
84db8181
JMF
395 ]
396
397 def _get_thumbnail_url(self, uri, itemdoc):
398 return 'http://mtv.mtvnimages.com/uri/' + uri
399
fc287219
PH
400 def _real_extract(self, url):
401 mobj = re.match(self._VALID_URL, url)
fc287219 402 video_id = mobj.group('videoid')
c801b205 403 uri = mobj.groupdict().get('mgid')
5c541b2c
JMF
404 if uri is None:
405 webpage = self._download_webpage(url, video_id)
5f6a1245 406
5c541b2c 407 # Some videos come from Vevo.com
ca0f500e
PH
408 m_vevo = re.search(
409 r'(?s)isVevoVideo = true;.*?vevoVideoId = "(.*?)";', webpage)
5c541b2c 410 if m_vevo:
8bcc8756 411 vevo_id = m_vevo.group(1)
32dac694 412 self.to_screen('Vevo video detected: %s' % vevo_id)
5c541b2c 413 return self.url_result('vevo:%s' % vevo_id, ie='Vevo')
5f6a1245 414
32dac694 415 uri = self._html_search_regex(r'/uri/(.*?)\?', webpage, 'uri')
f7e02595 416 return self._get_videos_info(uri)
bc4ba05f
JMF
417
418
071c1013
PH
419class MTVDEIE(MTVServicesInfoExtractor):
420 IE_NAME = 'mtv.de'
65488b82 421 _VALID_URL = r'https?://(?:www\.)?mtv\.de/(?:artists|shows|news)/(?:[^/]+/)*(?P<id>\d+)-[^/#?]+/*(?:[#?].*)?$'
79fa9db0
S
422 _TESTS = [{
423 'url': 'http://www.mtv.de/artists/10571-cro/videos/61131-traum',
424 'info_dict': {
425 'id': 'music_video-a50bc5f0b3aa4b3190aa',
712c7530 426 'ext': 'flv',
79fa9db0
S
427 'title': 'MusicVideo_cro-traum',
428 'description': 'Cro - Traum',
071c1013 429 },
79fa9db0
S
430 'params': {
431 # rtmp download
432 'skip_download': True,
433 },
35f6e0ff 434 'skip': 'Blocked at Travis CI',
c3c9f879
S
435 }, {
436 # mediagen URL without query (e.g. http://videos.mtvnn.com/mediagen/e865da714c166d18d6f80893195fcb97)
437 'url': 'http://www.mtv.de/shows/933-teen-mom-2/staffeln/5353/folgen/63565-enthullungen',
438 'info_dict': {
439 'id': 'local_playlist-f5ae778b9832cc837189',
712c7530 440 'ext': 'flv',
c3c9f879
S
441 'title': 'Episode_teen-mom-2_shows_season-5_episode-1_full-episode_part1',
442 },
443 'params': {
444 # rtmp download
445 'skip_download': True,
446 },
35f6e0ff 447 'skip': 'Blocked at Travis CI',
65488b82 448 }, {
65488b82
S
449 'url': 'http://www.mtv.de/news/77491-mtv-movies-spotlight-pixels-teil-3',
450 'info_dict': {
451 'id': 'local_playlist-4e760566473c4c8c5344',
452 'ext': 'mp4',
453 'title': 'Article_mtv-movies-spotlight-pixels-teil-3_short-clips_part1',
454 'description': 'MTV Movies Supercut',
455 },
456 'params': {
457 # rtmp download
458 'skip_download': True,
459 },
712c7530 460 'skip': 'Das Video kann zur Zeit nicht abgespielt werden.',
79fa9db0 461 }]
071c1013
PH
462
463 def _real_extract(self, url):
79fa9db0
S
464 video_id = self._match_id(url)
465
466 webpage = self._download_webpage(url, video_id)
467
468 playlist = self._parse_json(
469 self._search_regex(
470 r'window\.pagePlaylist\s*=\s*(\[.+?\]);\n', webpage, 'page playlist'),
471 video_id)
071c1013 472
712c7530
YCH
473 def _mrss_url(item):
474 return item['mrss'] + item.get('mrssvars', '')
475
65488b82
S
476 # news pages contain single video in playlist with different id
477 if len(playlist) == 1:
712c7530 478 return self._get_videos_info_from_url(_mrss_url(playlist[0]), video_id)
65488b82 479
071c1013 480 for item in playlist:
79fa9db0
S
481 item_id = item.get('id')
482 if item_id and compat_str(item_id) == video_id:
712c7530 483 return self._get_videos_info_from_url(_mrss_url(item), video_id)