2 import xml
.etree
.ElementTree
4 from .common
import InfoExtractor
5 from ..networking
import HEADRequest
, Request
24 def _media_xml_tag(tag
):
25 return f
'{{http://search.yahoo.com/mrss/}}{tag}'
28 class MTVServicesInfoExtractor(InfoExtractor
):
29 _MOBILE_TEMPLATE
= None
33 def _id_from_uri(uri
):
34 return uri
.split(':')[-1]
37 def _remove_template_parameter(url
):
38 # Remove the templates, like &device={device}
39 return re
.sub(r
'&[^=]*?={.*?}(?=(&|$))', '', url
)
41 def _get_feed_url(self
, uri
, url
=None):
44 def _get_thumbnail_url(self
, uri
, itemdoc
):
45 search_path
= '{}/{}'.format(_media_xml_tag('group'), _media_xml_tag('thumbnail'))
46 thumb_node
= itemdoc
.find(search_path
)
47 if thumb_node
is None:
49 return thumb_node
.get('url') or thumb_node
.text
or None
51 def _extract_mobile_video_formats(self
, mtvn_id
):
52 webpage_url
= self
._MOBILE
_TEMPLATE
% mtvn_id
53 req
= Request(webpage_url
)
54 # Otherwise we get a webpage that would execute some javascript
55 req
.headers
['User-Agent'] = 'curl/7'
56 webpage
= self
._download
_webpage
(req
, mtvn_id
,
57 'Downloading mobile page')
58 metrics_url
= unescapeHTML(self
._search
_regex
(r
'<a href="(http://metrics.+?)"', webpage
, 'url'))
59 req
= HEADRequest(metrics_url
)
60 response
= self
._request
_webpage
(req
, mtvn_id
, 'Resolving url')
62 # Transform the url to get the best quality:
63 url
= re
.sub(r
'.+pxE=mp4', 'http://mtvnmobile.vo.llnwd.net/kip0/_pxn=0+_pxK=18639+_pxE=mp4', url
, count
=1)
64 return [{'url': url
, 'ext': 'mp4'}]
66 def _extract_video_formats(self
, mdoc
, mtvn_id
, video_id
):
67 if re
.match(r
'.*/(error_country_block\.swf|geoblock\.mp4|copyright_error\.flv(?:\?geo\b.+?)?)$', mdoc
.find('.//src').text
) is not None:
68 if mtvn_id
is not None and self
._MOBILE
_TEMPLATE
is not None:
69 self
.to_screen('The normal version is not available from your '
70 'country, trying with the mobile version')
71 return self
._extract
_mobile
_video
_formats
(mtvn_id
)
72 raise ExtractorError('This video is not available from your country.',
76 for rendition
in mdoc
.findall('.//rendition'):
77 if rendition
.get('method') == 'hls':
78 hls_url
= rendition
.find('./src').text
79 formats
.extend(self
._extract
_m
3u8_formats
(
80 hls_url
, video_id
, ext
='mp4', entry_protocol
='m3u8_native',
81 m3u8_id
='hls', fatal
=False))
85 _
, _
, ext
= rendition
.attrib
['type'].partition('/')
86 rtmp_video_url
= rendition
.find('./src').text
87 if 'error_not_available.swf' in rtmp_video_url
:
89 f
'{self.IE_NAME} said: video is not available',
91 if rtmp_video_url
.endswith('siteunavail.png'):
94 'ext': 'flv' if rtmp_video_url
.startswith('rtmp') else ext
,
95 'url': rtmp_video_url
,
96 'format_id': join_nonempty(
97 'rtmp' if rtmp_video_url
.startswith('rtmp') else None,
98 rendition
.get('bitrate')),
99 'width': int(rendition
.get('width')),
100 'height': int(rendition
.get('height')),
102 except (KeyError, TypeError):
103 raise ExtractorError('Invalid rendition field.')
106 def _extract_subtitles(self
, mdoc
, mtvn_id
):
108 for transcript
in mdoc
.findall('.//transcript'):
109 if transcript
.get('kind') != 'captions':
111 lang
= transcript
.get('srclang')
112 for typographic
in transcript
.findall('./typographic'):
113 sub_src
= typographic
.get('src')
116 ext
= typographic
.get('format')
119 subtitles
.setdefault(lang
, []).append({
125 def _get_video_info(self
, itemdoc
, use_hls
=True):
126 uri
= itemdoc
.find('guid').text
127 video_id
= self
._id
_from
_uri
(uri
)
128 self
.report_extraction(video_id
)
129 content_el
= itemdoc
.find('{}/{}'.format(_media_xml_tag('group'), _media_xml_tag('content')))
130 mediagen_url
= self
._remove
_template
_parameter
(content_el
.attrib
['url'])
131 mediagen_url
= mediagen_url
.replace('device={device}', '')
132 if 'acceptMethods' not in mediagen_url
:
133 mediagen_url
+= '&' if '?' in mediagen_url
else '?'
134 mediagen_url
+= 'acceptMethods='
135 mediagen_url
+= 'hls' if use_hls
else 'fms'
137 mediagen_doc
= self
._download
_xml
(
138 mediagen_url
, video_id
, 'Downloading video urls', fatal
=False)
140 if not isinstance(mediagen_doc
, xml
.etree
.ElementTree
.Element
):
143 item
= mediagen_doc
.find('./video/item')
144 if item
is not None and item
.get('type') == 'text':
145 message
= f
'{self.IE_NAME} returned error: '
146 if item
.get('code') is not None:
147 message
+= '{} - '.format(item
.get('code'))
149 raise ExtractorError(message
, expected
=True)
151 description
= strip_or_none(xpath_text(itemdoc
, 'description'))
153 timestamp
= timeconvert(xpath_text(itemdoc
, 'pubDate'))
157 title_el
= find_xpath_attr(
158 itemdoc
, './/{http://search.yahoo.com/mrss/}category',
159 'scheme', 'urn:mtvn:video_title')
161 title_el
= itemdoc
.find('.//{http://search.yahoo.com/mrss/}title')
163 title_el
= itemdoc
.find('.//title')
164 if title_el
.text
is None:
167 title
= title_el
.text
169 raise ExtractorError('Could not find video title')
170 title
= title
.strip()
172 series
= find_xpath_attr(
173 itemdoc
, './/{http://search.yahoo.com/mrss/}category',
174 'scheme', 'urn:mtvn:franchise')
175 season
= find_xpath_attr(
176 itemdoc
, './/{http://search.yahoo.com/mrss/}category',
177 'scheme', 'urn:mtvn:seasonN')
178 episode
= find_xpath_attr(
179 itemdoc
, './/{http://search.yahoo.com/mrss/}category',
180 'scheme', 'urn:mtvn:episodeN')
181 series
= series
.text
if series
is not None else None
182 season
= season
.text
if season
is not None else None
183 episode
= episode
.text
if episode
is not None else None
184 if season
and episode
:
185 # episode number includes season, so remove it
186 episode
= re
.sub(rf
'^{season}', '', episode
)
188 # This a short id that's used in the webpage urls
190 mtvn_id_node
= find_xpath_attr(itemdoc
, './/{http://search.yahoo.com/mrss/}category',
191 'scheme', 'urn:mtvn:id')
192 if mtvn_id_node
is not None:
193 mtvn_id
= mtvn_id_node
.text
195 formats
= self
._extract
_video
_formats
(mediagen_doc
, mtvn_id
, video_id
)
197 # Some parts of complete video may be missing (e.g. missing Act 3 in
198 # http://www.southpark.de/alle-episoden/s14e01-sexual-healing)
205 'subtitles': self
._extract
_subtitles
(mediagen_doc
, mtvn_id
),
207 'thumbnail': self
._get
_thumbnail
_url
(uri
, itemdoc
),
208 'description': description
,
209 'duration': float_or_none(content_el
.attrib
.get('duration')),
210 'timestamp': timestamp
,
212 'season_number': int_or_none(season
),
213 'episode_number': int_or_none(episode
),
216 def _get_feed_query(self
, uri
):
219 data
['lang'] = self
._LANG
222 def _get_videos_info(self
, uri
, use_hls
=True, url
=None):
223 video_id
= self
._id
_from
_uri
(uri
)
224 feed_url
= self
._get
_feed
_url
(uri
, url
)
225 info_url
= update_url_query(feed_url
, self
._get
_feed
_query
(uri
))
226 return self
._get
_videos
_info
_from
_url
(info_url
, video_id
, use_hls
)
228 def _get_videos_info_from_url(self
, url
, video_id
, use_hls
=True):
229 idoc
= self
._download
_xml
(
231 'Downloading info', transform_source
=fix_xml_ampersands
)
233 title
= xpath_text(idoc
, './channel/title')
234 description
= xpath_text(idoc
, './channel/description')
237 for item
in idoc
.findall('.//item'):
238 info
= self
._get
_video
_info
(item
, use_hls
)
242 # TODO: should be multi-video
243 return self
.playlist_result(
244 entries
, playlist_title
=title
, playlist_description
=description
)
246 def _extract_triforce_mgid(self
, webpage
, data_zone
=None, video_id
=None):
247 triforce_feed
= self
._parse
_json
(self
._search
_regex
(
248 r
'triforceManifestFeed\s*=\s*({.+?})\s*;\s*\n', webpage
,
249 'triforce feed', default
='{}'), video_id
, fatal
=False)
251 data_zone
= self
._search
_regex
(
252 r
'data-zone=(["\'])(?P
<zone
>.+?_lc_promo
.*?
)\
1', webpage,
253 'data zone
', default=data_zone, group='zone
')
256 triforce_feed, lambda x: x['manifest
']['zones
'][data_zone]['feed
'],
261 feed = self._download_json(feed_url, video_id, fatal=False)
265 return try_get(feed, lambda x: x['result
']['data
']['id'], str)
268 def _extract_child_with_type(parent, t):
269 for c in parent['children
']:
270 if c.get('type') == t:
273 def _extract_mgid(self, webpage):
275 # the url can be http://media.mtvnservices.com/fb/{mgid}.swf
276 # or http://media.mtvnservices.com/{mgid}
277 og_url = self._og_search_video_url(webpage)
278 mgid = url_basename(og_url)
279 if mgid.endswith('.swf
'):
281 except RegexNotFoundError:
284 if mgid is None or ':' not in mgid:
285 mgid = self._search_regex(
286 [r'data
-mgid
="(.*?)"', r'swfobject\
.embedSWF\
(".*?(mgid:.*?)"'],
287 webpage, 'mgid
', default=None)
290 sm4_embed = self._html_search_meta(
291 'sm4
:video
:embed
', webpage, 'sm4 embed
', default='')
292 mgid = self._search_regex(
293 r'embed
/(mgid
:.+?
)["\'&?/]', sm4_embed, 'mgid', default=None)
296 mgid = self._extract_triforce_mgid(webpage)
299 data = self._parse_json(self._search_regex(
300 r'__DATA__\s*=\s*({.+?});', webpage, 'data'), None)
301 main_container = self._extract_child_with_type(data, 'MainContainer')
302 ab_testing = self._extract_child_with_type(main_container, 'ABTesting')
303 video_player = self._extract_child_with_type(ab_testing or main_container, 'VideoPlayer')
305 mgid = try_get(video_player, lambda x: x['props']['media']['video']['config']['uri'])
307 flex_wrapper = self._extract_child_with_type(ab_testing or main_container, 'FlexWrapper')
308 auth_suite_wrapper = self._extract_child_with_type(flex_wrapper, 'AuthSuiteWrapper')
309 player = self._extract_child_with_type(auth_suite_wrapper or flex_wrapper, 'Player')
311 mgid = try_get(player, lambda x: x['props']['videoDetail']['mgid'])
314 raise ExtractorError('Could not extract mgid')
318 def _real_extract(self, url):
319 title = url_basename(url)
320 webpage = self._download_webpage(url, title)
321 mgid = self._extract_mgid(webpage)
322 return self._get_videos_info(mgid, url=url)
325 class MTVServicesEmbeddedIE(MTVServicesInfoExtractor):
326 IE_NAME = 'mtvservices:embedded'
327 _VALID_URL = r'https?://media\.mtvnservices\.com/embed/(?P<mgid>.+?)(\?|/|$)'
328 _EMBED_REGEX = [r'<iframe[^>]+?src=(["\'])(?P
<url
>(?
:https?
:)?
//media\
.mtvnservices\
.com
/embed
/.+?
)\
1']
331 # From http://www.thewrap.com/peter-dinklage-sums-up-game-of-thrones-in-45-seconds-video/
332 'url
': 'http
://media
.mtvnservices
.com
/embed
/mgid
:uma
:video
:mtv
.com
:1043906/cp~vid
%3D1043906
%26uri
%3Dmgid
%3Auma
%3Avideo
%3Amtv
.com
%3A1043906
',
333 'md5
': 'cb349b21a7897164cede95bd7bf3fbb9
',
337 'title
': 'Peter Dinklage Sums Up
\'Game Of Thrones
\' In
45 Seconds
',
338 'description
': '"Sexy sexy sexy, stabby stabby stabby, beautiful language," says Peter Dinklage
as he tries summarizing
"Game of Thrones" in under a minute
.',
339 'timestamp
': 1400126400,
340 'upload_date
': '20140515',
344 def _get_feed_url(self, uri, url=None):
345 video_id = self._id_from_uri(uri)
346 config = self._download_json(
347 f'http
://media
.mtvnservices
.com
/pmt
/e1
/access
/index
.html?uri
={uri}
&configtype
=edge
', video_id)
348 return self._remove_template_parameter(config['feedWithQueryParams
'])
350 def _real_extract(self, url):
351 mobj = self._match_valid_url(url)
352 mgid = mobj.group('mgid
')
353 return self._get_videos_info(mgid)
356 class MTVIE(MTVServicesInfoExtractor):
358 _VALID_URL = r'https?
://(?
:www\
.)?mtv\
.com
/(?
:video
-clips|
(?
:full
-)?episodes
)/(?P
<id>[^
/?
#.]+)'
359 _FEED_URL
= 'http://www.mtv.com/feeds/mrss/'
362 'url': 'http://www.mtv.com/video-clips/vl8qof/unlocking-the-truth-trailer',
363 'md5': '1edbcdf1e7628e414a8c5dcebca3d32b',
365 'id': '5e14040d-18a4-47c4-a582-43ff602de88e',
367 'title': 'Unlocking The Truth|July 18, 2016|1|101|Trailer',
368 'description': '"Unlocking the Truth" premieres August 17th at 11/10c.',
369 'timestamp': 1468846800,
370 'upload_date': '20160718',
373 'url': 'http://www.mtv.com/full-episodes/94tujl/unlocking-the-truth-gates-of-hell-season-1-ep-101',
374 'only_matching': True,
376 'url': 'http://www.mtv.com/episodes/g8xu7q/teen-mom-2-breaking-the-wall-season-7-ep-713',
377 'only_matching': True,
381 class MTVJapanIE(MTVServicesInfoExtractor
):
383 _VALID_URL
= r
'https?://(?:www\.)?mtvjapan\.com/videos/(?P<id>[0-9a-z]+)'
386 'url': 'http://www.mtvjapan.com/videos/prayht/fresh-info-cadillac-escalade',
388 'id': 'bc01da03-6fe5-4284-8880-f291f4e368f5',
390 'title': '【Fresh Info】Cadillac ESCALADE Sport Edition',
393 'skip_download': True,
396 _GEO_COUNTRIES
= ['JP']
397 _FEED_URL
= 'http://feeds.mtvnservices.com/od/feed/intl-mrss-player-feed'
399 def _get_feed_query(self
, uri
):
401 'arcEp': 'mtvjapan.com',
406 class MTVVideoIE(MTVServicesInfoExtractor
):
407 IE_NAME
= 'mtv:video'
408 _VALID_URL
= r
'''(?x)^https?://
409 (?:(?:www\.)?mtv\.com/videos/.+?/(?P<videoid>[0-9]+)/[^/]+$|
410 m\.mtv\.com/videos/video\.rbml\?.*?id=(?P<mgid>[^&]+))'''
412 _FEED_URL
= 'http://www.mtv.com/player/embed/AS3/rss/'
416 'url': 'http://www.mtv.com/videos/misc/853555/ours-vh1-storytellers.jhtml',
417 'md5': '850f3f143316b1e71fa56a4edfd6e0f8',
421 'title': 'Taylor Swift - "Ours (VH1 Storytellers)"',
422 'description': 'Album: Taylor Swift performs "Ours" for VH1 Storytellers at Harvey Mudd College.',
423 'timestamp': 1352610000,
424 'upload_date': '20121111',
429 def _get_thumbnail_url(self
, uri
, itemdoc
):
430 return 'http://mtv.mtvnimages.com/uri/' + uri
432 def _real_extract(self
, url
):
433 mobj
= self
._match
_valid
_url
(url
)
434 video_id
= mobj
.group('videoid')
435 uri
= mobj
.groupdict().get('mgid')
437 webpage
= self
._download
_webpage
(url
, video_id
)
439 # Some videos come from Vevo.com
441 r
'(?s)isVevoVideo = true;.*?vevoVideoId = "(.*?)";', webpage
)
443 vevo_id
= m_vevo
.group(1)
444 self
.to_screen(f
'Vevo video detected: {vevo_id}')
445 return self
.url_result(f
'vevo:{vevo_id}', ie
='Vevo')
447 uri
= self
._html
_search
_regex
(r
'/uri/(.*?)\?', webpage
, 'uri')
448 return self
._get
_videos
_info
(uri
)
451 class MTVDEIE(MTVServicesInfoExtractor
):
454 _VALID_URL
= r
'https?://(?:www\.)?mtv\.de/(?:musik/videoclips|folgen|news)/(?P<id>[0-9a-z]+)'
456 'url': 'http://www.mtv.de/musik/videoclips/2gpnv7/Traum',
458 'id': 'd5d472bc-f5b7-11e5-bffd-a4badb20dab5',
461 'description': 'Traum',
465 'skip_download': True,
467 'skip': 'Blocked at Travis CI',
469 # mediagen URL without query (e.g. http://videos.mtvnn.com/mediagen/e865da714c166d18d6f80893195fcb97)
470 'url': 'http://www.mtv.de/folgen/6b1ylu/teen-mom-2-enthuellungen-S5-F1',
472 'id': '1e5a878b-31c5-11e7-a442-0e40cf2fc285',
474 'title': 'Teen Mom 2',
475 'description': 'md5:dc65e357ef7e1085ed53e9e9d83146a7',
479 'skip_download': True,
481 'skip': 'Blocked at Travis CI',
483 'url': 'http://www.mtv.de/news/glolix/77491-mtv-movies-spotlight--pixels--teil-3',
485 'id': 'local_playlist-4e760566473c4c8c5344',
487 'title': 'Article_mtv-movies-spotlight-pixels-teil-3_short-clips_part1',
488 'description': 'MTV Movies Supercut',
492 'skip_download': True,
494 'skip': 'Das Video kann zur Zeit nicht abgespielt werden.',
496 _GEO_COUNTRIES
= ['DE']
497 _FEED_URL
= 'http://feeds.mtvnservices.com/od/feed/intl-mrss-player-feed'
499 def _get_feed_query(self
, uri
):
506 class MTVItaliaIE(MTVServicesInfoExtractor
):
508 _VALID_URL
= r
'https?://(?:www\.)?mtv\.it/(?:episodi|video|musica)/(?P<id>[0-9a-z]+)'
510 'url': 'http://www.mtv.it/episodi/24bqab/mario-una-serie-di-maccio-capatonda-cavoli-amario-episodio-completo-S1-E1',
512 'id': '0f0fc78e-45fc-4cce-8f24-971c25477530',
514 'title': 'Cavoli amario (episodio completo)',
515 'description': 'md5:4962bccea8fed5b7c03b295ae1340660',
516 'series': 'Mario - Una Serie Di Maccio Capatonda',
521 'skip_download': True,
524 _GEO_COUNTRIES
= ['IT']
525 _FEED_URL
= 'http://feeds.mtvnservices.com/od/feed/intl-mrss-player-feed'
527 def _get_feed_query(self
, uri
):
534 class MTVItaliaProgrammaIE(MTVItaliaIE
): # XXX: Do not subclass from concrete IE
535 IE_NAME
= 'mtv.it:programma'
536 _VALID_URL
= r
'https?://(?:www\.)?mtv\.it/(?:programmi|playlist)/(?P<id>[0-9a-z]+)'
538 # program page: general
539 'url': 'http://www.mtv.it/programmi/s2rppv/mario-una-serie-di-maccio-capatonda',
541 'id': 'a6f155bc-8220-4640-aa43-9b95f64ffa3d',
542 'title': 'Mario - Una Serie Di Maccio Capatonda',
543 'description': 'md5:72fbffe1f77ccf4e90757dd4e3216153',
547 'skip_download': True,
550 # program page: specific season
551 'url': 'http://www.mtv.it/programmi/d9ncjf/mario-una-serie-di-maccio-capatonda-S2',
553 'id': '4deeb5d8-f272-490c-bde2-ff8d261c6dd1',
554 'title': 'Mario - Una Serie Di Maccio Capatonda - Stagione 2',
556 'playlist_count': 34,
558 'skip_download': True,
561 # playlist page + redirect
562 'url': 'http://www.mtv.it/playlist/sexy-videos/ilctal',
564 'id': 'dee8f9ee-756d-493b-bf37-16d1d2783359',
565 'title': 'Sexy Videos',
567 'playlist_mincount': 145,
569 'skip_download': True,
572 _GEO_COUNTRIES
= ['IT']
573 _FEED_URL
= 'http://www.mtv.it/feeds/triforce/manifest/v8'
575 def _get_entries(self
, title
, url
):
577 pg
= self
._search
_regex
(r
'/(\d+)$', url
, 'entries', '1')
578 entries
= self
._download
_json
(url
, title
, f
'page {pg}')
580 entries
, lambda x
: x
['result']['nextPageURL'], str)
583 lambda x
: x
['result']['data']['items'],
584 lambda x
: x
['result']['data']['seasons']),
586 for entry
in entries
or []:
587 if entry
.get('canonicalURL'):
588 yield self
.url_result(entry
['canonicalURL'])
592 def _real_extract(self
, url
):
594 info_url
= update_url_query(self
._FEED
_URL
, query
)
595 video_id
= self
._match
_id
(url
)
596 info
= self
._download
_json
(info_url
, video_id
).get('manifest')
599 info
, lambda x
: x
['newLocation']['url'], str)
601 return self
.url_result(redirect
)
603 title
= info
.get('title')
605 info
, lambda x
: x
['reporting']['itemId'], str)
607 info
, lambda x
: x
['reporting']['parentId'], str)
609 playlist_url
= current_url
= None
610 for z
in (info
.get('zones') or {}).values():
611 if z
.get('moduleName') in ('INTL_M304', 'INTL_M209'):
612 info_url
= z
.get('feed')
613 if z
.get('moduleName') in ('INTL_M308', 'INTL_M317'):
614 playlist_url
= playlist_url
or z
.get('feed')
615 if z
.get('moduleName') in ('INTL_M300',):
616 current_url
= current_url
or z
.get('feed')
619 raise ExtractorError('No info found')
621 if video_id
== parent_id
:
622 video_id
= self
._search
_regex
(
623 r
'([^\/]+)/[^\/]+$', info_url
, 'video_id')
625 info
= self
._download
_json
(info_url
, video_id
, 'Show infos')
626 info
= try_get(info
, lambda x
: x
['result']['data'], dict)
627 title
= title
or try_get(
629 lambda x
: x
['title'],
630 lambda x
: x
['headline']),
632 description
= try_get(info
, lambda x
: x
['content'], str)
636 self
._download
_json
(playlist_url
, video_id
, 'Seasons info'),
637 lambda x
: x
['result']['data'], dict)
639 season
, lambda x
: x
['currentSeason'], str)
641 season
, lambda x
: x
['seasons'], list) or []
643 if current
in [s
.get('eTitle') for s
in seasons
]:
644 playlist_url
= current_url
647 r
'[-|]\s*(?:mtv\s*italia|programma|playlist)',
648 '', title
, flags
=re
.IGNORECASE
).strip()
650 return self
.playlist_result(
651 self
._get
_entries
(title
, playlist_url
),
652 video_id
, title
, description
)