1 from __future__
import unicode_literals
5 from .common
import InfoExtractor
28 def _media_xml_tag(tag
):
29 return '{http://search.yahoo.com/mrss/}%s' % tag
32 class MTVServicesInfoExtractor(InfoExtractor
):
33 _MOBILE_TEMPLATE
= None
37 def _id_from_uri(uri
):
38 return uri
.split(':')[-1]
41 def _remove_template_parameter(url
):
42 # Remove the templates, like &device={device}
43 return re
.sub(r
'&[^=]*?={.*?}(?=(&|$))', '', url
)
45 def _get_feed_url(self
, uri
):
48 def _get_thumbnail_url(self
, uri
, itemdoc
):
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:
53 return thumb_node
.get('url') or thumb_node
.text
or None
55 def _extract_mobile_video_formats(self
, mtvn_id
):
56 webpage_url
= self
._MOBILE
_TEMPLATE
% mtvn_id
57 req
= sanitized_Request(webpage_url
)
58 # Otherwise we get a webpage that would execute some javascript
59 req
.add_header('User-Agent', 'curl/7')
60 webpage
= self
._download
_webpage
(req
, mtvn_id
,
61 'Downloading mobile page')
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)
68 return [{'url': url
, 'ext': 'mp4'}]
70 def _extract_video_formats(self
, mdoc
, mtvn_id
, video_id
):
71 if re
.match(r
'.*/(error_country_block\.swf|geoblock\.mp4|copyright_error\.flv(?:\?geo\b.+?)?)$', mdoc
.find('.//src').text
) is not None:
72 if mtvn_id
is not None and self
._MOBILE
_TEMPLATE
is not None:
73 self
.to_screen('The normal version is not available from your '
74 'country, trying with the mobile version')
75 return self
._extract
_mobile
_video
_formats
(mtvn_id
)
76 raise ExtractorError('This video is not available from your country.',
80 for rendition
in mdoc
.findall('.//rendition'):
81 if rendition
.get('method') == 'hls':
82 hls_url
= rendition
.find('./src').text
83 formats
.extend(self
._extract
_m
3u8_formats
(
84 hls_url
, video_id
, ext
='mp4', entry_protocol
='m3u8_native',
85 m3u8_id
='hls', fatal
=False))
89 _
, _
, ext
= rendition
.attrib
['type'].partition('/')
90 rtmp_video_url
= rendition
.find('./src').text
91 if 'error_not_available.swf' in rtmp_video_url
:
93 '%s said: video is not available' % self
.IE_NAME
,
95 if rtmp_video_url
.endswith('siteunavail.png'):
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')])),
103 'width': int(rendition
.get('width')),
104 'height': int(rendition
.get('height')),
106 except (KeyError, TypeError):
107 raise ExtractorError('Invalid rendition field.')
109 self
._sort
_formats
(formats
)
112 def _extract_subtitles(self
, mdoc
, mtvn_id
):
114 for transcript
in mdoc
.findall('.//transcript'):
115 if transcript
.get('kind') != 'captions':
117 lang
= transcript
.get('srclang')
118 for typographic
in transcript
.findall('./typographic'):
119 sub_src
= typographic
.get('src')
122 ext
= typographic
.get('format')
125 subtitles
.setdefault(lang
, []).append({
126 'url': compat_str(sub_src
),
131 def _get_video_info(self
, itemdoc
, use_hls
=True):
132 uri
= itemdoc
.find('guid').text
133 video_id
= self
._id
_from
_uri
(uri
)
134 self
.report_extraction(video_id
)
135 content_el
= itemdoc
.find('%s/%s' % (_media_xml_tag('group'), _media_xml_tag('content')))
136 mediagen_url
= self
._remove
_template
_parameter
(content_el
.attrib
['url'])
137 mediagen_url
= mediagen_url
.replace('device={device}', '')
138 if 'acceptMethods' not in mediagen_url
:
139 mediagen_url
+= '&' if '?' in mediagen_url
else '?'
140 mediagen_url
+= 'acceptMethods='
141 mediagen_url
+= 'hls' if use_hls
else 'fms'
143 mediagen_doc
= self
._download
_xml
(
144 mediagen_url
, video_id
, 'Downloading video urls', fatal
=False)
146 if mediagen_doc
is False:
149 item
= mediagen_doc
.find('./video/item')
150 if item
is not None and item
.get('type') == 'text':
151 message
= '%s returned error: ' % self
.IE_NAME
152 if item
.get('code') is not None:
153 message
+= '%s - ' % item
.get('code')
155 raise ExtractorError(message
, expected
=True)
157 description
= strip_or_none(xpath_text(itemdoc
, 'description'))
159 timestamp
= timeconvert(xpath_text(itemdoc
, 'pubDate'))
163 title_el
= find_xpath_attr(
164 itemdoc
, './/{http://search.yahoo.com/mrss/}category',
165 'scheme', 'urn:mtvn:video_title')
167 title_el
= itemdoc
.find(compat_xpath('.//{http://search.yahoo.com/mrss/}title'))
169 title_el
= itemdoc
.find(compat_xpath('.//title'))
170 if title_el
.text
is None:
173 title
= title_el
.text
175 raise ExtractorError('Could not find video title')
176 title
= title
.strip()
178 # This a short id that's used in the webpage urls
180 mtvn_id_node
= find_xpath_attr(itemdoc
, './/{http://search.yahoo.com/mrss/}category',
181 'scheme', 'urn:mtvn:id')
182 if mtvn_id_node
is not None:
183 mtvn_id
= mtvn_id_node
.text
185 formats
= self
._extract
_video
_formats
(mediagen_doc
, mtvn_id
, video_id
)
187 # Some parts of complete video may be missing (e.g. missing Act 3 in
188 # http://www.southpark.de/alle-episoden/s14e01-sexual-healing)
192 self
._sort
_formats
(formats
)
197 'subtitles': self
._extract
_subtitles
(mediagen_doc
, mtvn_id
),
199 'thumbnail': self
._get
_thumbnail
_url
(uri
, itemdoc
),
200 'description': description
,
201 'duration': float_or_none(content_el
.attrib
.get('duration')),
202 'timestamp': timestamp
,
205 def _get_feed_query(self
, uri
):
208 data
['lang'] = self
._LANG
211 def _get_videos_info(self
, uri
, use_hls
=True):
212 video_id
= self
._id
_from
_uri
(uri
)
213 feed_url
= self
._get
_feed
_url
(uri
)
214 info_url
= update_url_query(feed_url
, self
._get
_feed
_query
(uri
))
215 return self
._get
_videos
_info
_from
_url
(info_url
, video_id
, use_hls
)
217 def _get_videos_info_from_url(self
, url
, video_id
, use_hls
=True):
218 idoc
= self
._download
_xml
(
220 'Downloading info', transform_source
=fix_xml_ampersands
)
222 title
= xpath_text(idoc
, './channel/title')
223 description
= xpath_text(idoc
, './channel/description')
226 for item
in idoc
.findall('.//item'):
227 info
= self
._get
_video
_info
(item
, use_hls
)
231 return self
.playlist_result(
232 entries
, playlist_title
=title
, playlist_description
=description
)
234 def _extract_triforce_mgid(self
, webpage
, data_zone
=None, video_id
=None):
235 triforce_feed
= self
._parse
_json
(self
._search
_regex
(
236 r
'triforceManifestFeed\s*=\s*({.+?})\s*;\s*\n', webpage
,
237 'triforce feed', default
='{}'), video_id
, fatal
=False)
239 data_zone
= self
._search
_regex
(
240 r
'data-zone=(["\'])(?P
<zone
>.+?_lc_promo
.*?
)\
1', webpage,
241 'data zone
', default=data_zone, group='zone
')
244 triforce_feed, lambda x: x['manifest
']['zones
'][data_zone]['feed
'],
249 feed = self._download_json(feed_url, video_id, fatal=False)
253 return try_get(feed, lambda x: x['result
']['data
']['id'], compat_str)
255 def _extract_mgid(self, webpage):
257 # the url can be http://media.mtvnservices.com/fb/{mgid}.swf
258 # or http://media.mtvnservices.com/{mgid}
259 og_url = self._og_search_video_url(webpage)
260 mgid = url_basename(og_url)
261 if mgid.endswith('.swf
'):
263 except RegexNotFoundError:
266 if mgid is None or ':' not in mgid:
267 mgid = self._search_regex(
268 [r'data
-mgid
="(.*?)"', r'swfobject\
.embedSWF\
(".*?(mgid:.*?)"'],
269 webpage, 'mgid
', default=None)
272 sm4_embed = self._html_search_meta(
273 'sm4
:video
:embed
', webpage, 'sm4 embed
', default='')
274 mgid = self._search_regex(
275 r'embed
/(mgid
:.+?
)["\'&?/]', sm4_embed, 'mgid', default=None)
278 mgid = self._extract_triforce_mgid(webpage)
282 def _real_extract(self, url):
283 title = url_basename(url)
284 webpage = self._download_webpage(url, title)
285 mgid = self._extract_mgid(webpage)
286 videos_info = self._get_videos_info(mgid)
290 class MTVServicesEmbeddedIE(MTVServicesInfoExtractor):
291 IE_NAME = 'mtvservices:embedded'
292 _VALID_URL = r'https?://media\.mtvnservices\.com/embed/(?P<mgid>.+?)(\?|/|$)'
295 # From http://www.thewrap.com/peter-dinklage-sums-up-game-of-thrones-in-45-seconds-video/
296 'url': 'http://media.mtvnservices.com/embed/mgid:uma:video:mtv.com:1043906/cp~vid%3D1043906%26uri%3Dmgid%3Auma%3Avideo%3Amtv.com%3A1043906',
297 'md5': 'cb349b21a7897164cede95bd7bf3fbb9',
301 'title': 'Peter Dinklage Sums Up \'Game Of Thrones\' In 45 Seconds',
302 'description': '"Sexy sexy sexy
, stabby stabby stabby
, beautiful language
," says Peter Dinklage as he tries summarizing "Game of Thrones
" in under a minute.',
303 'timestamp': 1400126400,
304 'upload_date': '20140515',
309 def _extract_url(webpage):
311 r'<iframe[^>]+?src=(["\'])(?P
<url
>(?
:https?
:)?
//media
.mtvnservices
.com
/embed
/.+?
)\
1', webpage)
313 return mobj.group('url
')
315 def _get_feed_url(self, uri):
316 video_id = self._id_from_uri(uri)
317 config = self._download_json(
318 'http
://media
.mtvnservices
.com
/pmt
/e1
/access
/index
.html?uri
=%s&configtype
=edge
' % uri, video_id)
319 return self._remove_template_parameter(config['feedWithQueryParams
'])
321 def _real_extract(self, url):
322 mobj = re.match(self._VALID_URL, url)
323 mgid = mobj.group('mgid
')
324 return self._get_videos_info(mgid)
327 class MTVIE(MTVServicesInfoExtractor):
329 _VALID_URL = r'https?
://(?
:www\
.)?mtv\
.com
/(?
:video
-clips|
(?
:full
-)?episodes
)/(?P
<id>[^
/?
#.]+)'
330 _FEED_URL
= 'http://www.mtv.com/feeds/mrss/'
333 'url': 'http://www.mtv.com/video-clips/vl8qof/unlocking-the-truth-trailer',
334 'md5': '1edbcdf1e7628e414a8c5dcebca3d32b',
336 'id': '5e14040d-18a4-47c4-a582-43ff602de88e',
338 'title': 'Unlocking The Truth|July 18, 2016|1|101|Trailer',
339 'description': '"Unlocking the Truth" premieres August 17th at 11/10c.',
340 'timestamp': 1468846800,
341 'upload_date': '20160718',
344 'url': 'http://www.mtv.com/full-episodes/94tujl/unlocking-the-truth-gates-of-hell-season-1-ep-101',
345 'only_matching': True,
347 'url': 'http://www.mtv.com/episodes/g8xu7q/teen-mom-2-breaking-the-wall-season-7-ep-713',
348 'only_matching': True,
352 class MTV81IE(InfoExtractor
):
354 _VALID_URL
= r
'https?://(?:www\.)?mtv81\.com/videos/(?P<id>[^/?#.]+)'
357 'url': 'http://www.mtv81.com/videos/artist-to-watch/the-godfather-of-japanese-hip-hop-segment-1/',
358 'md5': '1edbcdf1e7628e414a8c5dcebca3d32b',
360 'id': '5e14040d-18a4-47c4-a582-43ff602de88e',
362 'title': 'Unlocking The Truth|July 18, 2016|1|101|Trailer',
363 'description': '"Unlocking the Truth" premieres August 17th at 11/10c.',
364 'timestamp': 1468846800,
365 'upload_date': '20160718',
369 def _extract_mgid(self
, webpage
):
370 return self
._search
_regex
(
371 r
'getTheVideo\((["\'])(?P
<id>mgid
:.+?
)\
1', webpage,
374 def _real_extract(self, url):
375 video_id = self._match_id(url)
376 webpage = self._download_webpage(url, video_id)
377 mgid = self._extract_mgid(webpage)
378 return self.url_result('http
://media
.mtvnservices
.com
/embed
/%s' % mgid)
381 class MTVVideoIE(MTVServicesInfoExtractor):
382 IE_NAME = 'mtv
:video
'
383 _VALID_URL = r'''(?x)^https?://
384 (?:(?:www\.)?mtv\.com/videos/.+?/(?P<videoid>[0-9]+)/[^/]+$|
385 m\.mtv\.com/videos/video\.rbml\?.*?id=(?P<mgid>[^&]+))'''
387 _FEED_URL = 'http
://www
.mtv
.com
/player
/embed
/AS3
/rss
/'
391 'url
': 'http
://www
.mtv
.com
/videos
/misc
/853555/ours
-vh1
-storytellers
.jhtml
',
392 'md5
': '850f3f143316b1e71fa56a4edfd6e0f8
',
396 'title
': 'Taylor Swift
- "Ours (VH1 Storytellers)"',
397 'description
': 'Album
: Taylor Swift performs
"Ours" for VH1 Storytellers at Harvey Mudd College
.',
398 'timestamp
': 1352610000,
399 'upload_date
': '20121111',
404 def _get_thumbnail_url(self, uri, itemdoc):
405 return 'http
://mtv
.mtvnimages
.com
/uri
/' + uri
407 def _real_extract(self, url):
408 mobj = re.match(self._VALID_URL, url)
409 video_id = mobj.group('videoid
')
410 uri = mobj.groupdict().get('mgid
')
412 webpage = self._download_webpage(url, video_id)
414 # Some videos come from Vevo.com
416 r'(?s
)isVevoVideo
= true
;.*?vevoVideoId
= "(.*?)";', webpage)
418 vevo_id = m_vevo.group(1)
419 self.to_screen('Vevo video detected
: %s' % vevo_id)
420 return self.url_result('vevo
:%s' % vevo_id, ie='Vevo
')
422 uri = self._html_search_regex(r'/uri
/(.*?
)\?', webpage, 'uri
')
423 return self._get_videos_info(uri)
426 class MTVDEIE(MTVServicesInfoExtractor):
428 _VALID_URL = r'https?
://(?
:www\
.)?mtv\
.de
/(?
:artists|shows|news
)/(?
:[^
/]+/)*(?P
<id>\d
+)-[^
/#?]+/*(?:[#?].*)?$'
430 'url': 'http://www.mtv.de/artists/10571-cro/videos/61131-traum',
432 'id': 'music_video-a50bc5f0b3aa4b3190aa',
434 'title': 'MusicVideo_cro-traum',
435 'description': 'Cro - Traum',
439 'skip_download': True,
441 'skip': 'Blocked at Travis CI',
443 # mediagen URL without query (e.g. http://videos.mtvnn.com/mediagen/e865da714c166d18d6f80893195fcb97)
444 'url': 'http://www.mtv.de/shows/933-teen-mom-2/staffeln/5353/folgen/63565-enthullungen',
446 'id': 'local_playlist-f5ae778b9832cc837189',
448 'title': 'Episode_teen-mom-2_shows_season-5_episode-1_full-episode_part1',
452 'skip_download': True,
454 'skip': 'Blocked at Travis CI',
456 'url': 'http://www.mtv.de/news/77491-mtv-movies-spotlight-pixels-teil-3',
458 'id': 'local_playlist-4e760566473c4c8c5344',
460 'title': 'Article_mtv-movies-spotlight-pixels-teil-3_short-clips_part1',
461 'description': 'MTV Movies Supercut',
465 'skip_download': True,
467 'skip': 'Das Video kann zur Zeit nicht abgespielt werden.',
470 def _real_extract(self
, url
):
471 video_id
= self
._match
_id
(url
)
473 webpage
= self
._download
_webpage
(url
, video_id
)
475 playlist
= self
._parse
_json
(
477 r
'window\.pagePlaylist\s*=\s*(\[.+?\]);\n', webpage
, 'page playlist'),
481 return item
['mrss'] + item
.get('mrssvars', '')
483 # news pages contain single video in playlist with different id
484 if len(playlist
) == 1:
485 return self
._get
_videos
_info
_from
_url
(_mrss_url(playlist
[0]), video_id
)
487 for item
in playlist
:
488 item_id
= item
.get('id')
489 if item_id
and compat_str(item_id
) == video_id
:
490 return self
._get
_videos
_info
_from
_url
(_mrss_url(item
), video_id
)