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     # This was originally implemented for ComedyCentral, but it also works here 
  47     def _transform_rtmp_url(cls
, rtmp_video_url
): 
  48         m 
= re
.match(r
'^rtmpe?://.*?/(?P<finalid>gsp\..+?/.*)$', rtmp_video_url
) 
  50             return {'rtmp': rtmp_video_url
} 
  51         base 
= 'http://viacommtvstrmfs.fplive.net/' 
  52         return {'http': base 
+ m
.group('finalid')} 
  54     def _get_feed_url(self
, uri
): 
  57     def _get_thumbnail_url(self
, uri
, itemdoc
): 
  58         search_path 
= '%s/%s' % (_media_xml_tag('group'), _media_xml_tag('thumbnail')) 
  59         thumb_node 
= itemdoc
.find(search_path
) 
  60         if thumb_node 
is None: 
  63             return thumb_node
.attrib
['url'] 
  65     def _extract_mobile_video_formats(self
, mtvn_id
): 
  66         webpage_url 
= self
._MOBILE
_TEMPLATE 
% mtvn_id
 
  67         req 
= sanitized_Request(webpage_url
) 
  68         # Otherwise we get a webpage that would execute some javascript 
  69         req
.add_header('User-Agent', 'curl/7') 
  70         webpage 
= self
._download
_webpage
(req
, mtvn_id
, 
  71                                          'Downloading mobile page') 
  72         metrics_url 
= unescapeHTML(self
._search
_regex
(r
'<a href="(http://metrics.+?)"', webpage
, 'url')) 
  73         req 
= HEADRequest(metrics_url
) 
  74         response 
= self
._request
_webpage
(req
, mtvn_id
, 'Resolving url') 
  75         url 
= response
.geturl() 
  76         # Transform the url to get the best quality: 
  77         url 
= re
.sub(r
'.+pxE=mp4', 'http://mtvnmobile.vo.llnwd.net/kip0/_pxn=0+_pxK=18639+_pxE=mp4', url
, 1) 
  78         return [{'url': url
, 'ext': 'mp4'}] 
  80     def _extract_video_formats(self
, mdoc
, mtvn_id
): 
  81         if re
.match(r
'.*/(error_country_block\.swf|geoblock\.mp4|copyright_error\.flv(?:\?geo\b.+?)?)$', mdoc
.find('.//src').text
) is not None: 
  82             if mtvn_id 
is not None and self
._MOBILE
_TEMPLATE 
is not None: 
  83                 self
.to_screen('The normal version is not available from your ' 
  84                                'country, trying with the mobile version') 
  85                 return self
._extract
_mobile
_video
_formats
(mtvn_id
) 
  86             raise ExtractorError('This video is not available from your country.', 
  90         for rendition 
in mdoc
.findall('.//rendition'): 
  92                 _
, _
, ext 
= rendition
.attrib
['type'].partition('/') 
  93                 rtmp_video_url 
= rendition
.find('./src').text
 
  94                 if rtmp_video_url
.endswith('siteunavail.png'): 
  96                 new_urls 
= self
._transform
_rtmp
_url
(rtmp_video_url
) 
  98                     'ext': 'flv' if new_url
.startswith('rtmp') else ext
, 
 100                     'format_id': '-'.join(filter(None, [kind
, rendition
.get('bitrate')])), 
 101                     'width': int(rendition
.get('width')), 
 102                     'height': int(rendition
.get('height')), 
 103                 } for kind
, new_url 
in new_urls
.items()]) 
 104             except (KeyError, TypeError): 
 105                 raise ExtractorError('Invalid rendition field.') 
 106         self
._sort
_formats
(formats
) 
 109     def _extract_subtitles(self
, mdoc
, mtvn_id
): 
 111         for transcript 
in mdoc
.findall('.//transcript'): 
 112             if transcript
.get('kind') != 'captions': 
 114             lang 
= transcript
.get('srclang') 
 116                 'url': compat_str(typographic
.get('src')), 
 117                 'ext': typographic
.get('format') 
 118             } for typographic 
in transcript
.findall('./typographic')] 
 121     def _get_video_info(self
, itemdoc
): 
 122         uri 
= itemdoc
.find('guid').text
 
 123         video_id 
= self
._id
_from
_uri
(uri
) 
 124         self
.report_extraction(video_id
) 
 125         content_el 
= itemdoc
.find('%s/%s' % (_media_xml_tag('group'), _media_xml_tag('content'))) 
 126         mediagen_url 
= self
._remove
_template
_parameter
(content_el
.attrib
['url']) 
 127         if 'acceptMethods' not in mediagen_url
: 
 128             mediagen_url 
+= '&' if '?' in mediagen_url 
else '?' 
 129             mediagen_url 
+= 'acceptMethods=fms' 
 131         mediagen_doc 
= self
._download
_xml
(mediagen_url
, video_id
, 
 132                                           'Downloading video urls') 
 134         item 
= mediagen_doc
.find('./video/item') 
 135         if item 
is not None and item
.get('type') == 'text': 
 136             message 
= '%s returned error: ' % self
.IE_NAME
 
 137             if item
.get('code') is not None: 
 138                 message 
+= '%s - ' % item
.get('code') 
 140             raise ExtractorError(message
, expected
=True) 
 142         description 
= strip_or_none(xpath_text(itemdoc
, 'description')) 
 144         timestamp 
= timeconvert(xpath_text(itemdoc
, 'pubDate')) 
 148             title_el 
= find_xpath_attr( 
 149                 itemdoc
, './/{http://search.yahoo.com/mrss/}category', 
 150                 'scheme', 'urn:mtvn:video_title') 
 152             title_el 
= itemdoc
.find(compat_xpath('.//{http://search.yahoo.com/mrss/}title')) 
 154             title_el 
= itemdoc
.find(compat_xpath('.//title')) 
 155             if title_el
.text 
is None: 
 158         title 
= title_el
.text
 
 160             raise ExtractorError('Could not find video title') 
 161         title 
= title
.strip() 
 163         # This a short id that's used in the webpage urls 
 165         mtvn_id_node 
= find_xpath_attr(itemdoc
, './/{http://search.yahoo.com/mrss/}category', 
 166                                        'scheme', 'urn:mtvn:id') 
 167         if mtvn_id_node 
is not None: 
 168             mtvn_id 
= mtvn_id_node
.text
 
 172             'formats': self
._extract
_video
_formats
(mediagen_doc
, mtvn_id
), 
 173             'subtitles': self
._extract
_subtitles
(mediagen_doc
, mtvn_id
), 
 175             'thumbnail': self
._get
_thumbnail
_url
(uri
, itemdoc
), 
 176             'description': description
, 
 177             'duration': float_or_none(content_el
.attrib
.get('duration')), 
 178             'timestamp': timestamp
, 
 181     def _get_feed_query(self
, uri
): 
 184             data
['lang'] = self
._LANG
 
 187     def _get_videos_info(self
, uri
): 
 188         video_id 
= self
._id
_from
_uri
(uri
) 
 189         feed_url 
= self
._get
_feed
_url
(uri
) 
 190         info_url 
= update_url_query(feed_url
, self
._get
_feed
_query
(uri
)) 
 191         return self
._get
_videos
_info
_from
_url
(info_url
, video_id
) 
 193     def _get_videos_info_from_url(self
, url
, video_id
): 
 194         idoc 
= self
._download
_xml
( 
 196             'Downloading info', transform_source
=fix_xml_ampersands
) 
 198         title 
= xpath_text(idoc
, './channel/title') 
 199         description 
= xpath_text(idoc
, './channel/description') 
 201         return self
.playlist_result( 
 202             [self
._get
_video
_info
(item
) for item 
in idoc
.findall('.//item')], 
 203             playlist_title
=title
, playlist_description
=description
) 
 205     def _extract_mgid(self
, webpage
, default
=NO_DEFAULT
): 
 207             # the url can be http://media.mtvnservices.com/fb/{mgid}.swf 
 208             # or http://media.mtvnservices.com/{mgid} 
 209             og_url 
= self
._og
_search
_video
_url
(webpage
) 
 210             mgid 
= url_basename(og_url
) 
 211             if mgid
.endswith('.swf'): 
 213         except RegexNotFoundError
: 
 216         if mgid 
is None or ':' not in mgid
: 
 217             mgid 
= self
._search
_regex
( 
 218                 [r
'data-mgid="(.*?)"', r
'swfobject.embedSWF\(".*?(mgid:.*?)"'], 
 219                 webpage
, 'mgid', default
=None) 
 222             sm4_embed 
= self
._html
_search
_meta
( 
 223                 'sm4:video:embed', webpage
, 'sm4 embed', default
='') 
 224             mgid 
= self
._search
_regex
( 
 225                 r
'embed/(mgid:.+?)["\'&?
/]', sm4_embed, 'mgid
', default=default) 
 228     def _real_extract(self, url): 
 229         title = url_basename(url) 
 230         webpage = self._download_webpage(url, title) 
 231         mgid = self._extract_mgid(webpage) 
 232         videos_info = self._get_videos_info(mgid) 
 236 class MTVServicesEmbeddedIE(MTVServicesInfoExtractor): 
 237     IE_NAME = 'mtvservices
:embedded
' 
 238     _VALID_URL = r'https?
://media\
.mtvnservices\
.com
/embed
/(?P
<mgid
>.+?
)(\?|
/|$
)' 
 241         # From http://www.thewrap.com/peter-dinklage-sums-up-game-of-thrones-in-45-seconds-video/ 
 242         'url
': 'http
://media
.mtvnservices
.com
/embed
/mgid
:uma
:video
:mtv
.com
:1043906/cp~vid
%3D1043906
%26uri
%3Dmgid
%3Auma
%3Avideo
%3Amtv
.com
%3A1043906
', 
 243         'md5
': 'cb349b21a7897164cede95bd7bf3fbb9
', 
 247             'title
': 'Peter Dinklage Sums Up 
\'Game Of Thrones
\' In 
45 Seconds
', 
 248             'description
': '"Sexy sexy sexy, stabby stabby stabby, beautiful language," says Peter Dinklage 
as he tries summarizing 
"Game of Thrones" in under a minute
.', 
 249             'timestamp
': 1400126400, 
 250             'upload_date
': '20140515', 
 255     def _extract_url(webpage): 
 257             r'<iframe
[^
>]+?src
=(["\'])(?P<url>(?:https?:)?//media.mtvnservices.com/embed/.+?)\1', webpage) 
 259             return mobj.group('url') 
 261     def _get_feed_url(self, uri): 
 262         video_id = self._id_from_uri(uri) 
 263         config = self._download_json( 
 264             'http://media.mtvnservices.com/pmt/e1/access/index.html?uri=%s&configtype=edge' % uri, video_id) 
 265         return self._remove_template_parameter(config['feedWithQueryParams']) 
 267     def _real_extract(self, url): 
 268         mobj = re.match(self._VALID_URL, url) 
 269         mgid = mobj.group('mgid') 
 270         return self._get_videos_info(mgid) 
 273 class MTVIE(MTVServicesInfoExtractor): 
 275     _VALID_URL = r'https?://(?:www\.)?mtv\.com/(?:video-clips|full-episodes)/(?P<id>[^/?#.]+)' 
 276     _FEED_URL = 'http://www.mtv.com/feeds/mrss/' 
 279         'url': 'http://www.mtv.com/video-clips/vl8qof/unlocking-the-truth-trailer', 
 280         'md5': '1edbcdf1e7628e414a8c5dcebca3d32b', 
 282             'id': '5e14040d-18a4-47c4-a582-43ff602de88e', 
 284             'title': 'Unlocking The Truth|July 18, 2016|1|101|Trailer', 
 285             'description': '"Unlocking the Truth
" premieres August 17th at 11/10c.', 
 286             'timestamp': 1468846800, 
 287             'upload_date': '20160718', 
 290         'url': 'http://www.mtv.com/full-episodes/94tujl/unlocking-the-truth-gates-of-hell-season-1-ep-101', 
 291         'only_matching': True, 
 295 class MTVVideoIE(MTVServicesInfoExtractor): 
 296     IE_NAME = 'mtv:video' 
 297     _VALID_URL = r'''(?x)^https?:// 
 298         (?:(?:www\.)?mtv\.com/videos/.+?/(?P<videoid>[0-9]+)/[^/]+$| 
 299            m\.mtv\.com/videos/video\.rbml\?.*?id=(?P<mgid>[^&]+))''' 
 301     _FEED_URL = 'http://www.mtv.com/player/embed/AS3/rss/' 
 305             'url': 'http://www.mtv.com/videos/misc/853555/ours-vh1-storytellers.jhtml', 
 306             'md5': '850f3f143316b1e71fa56a4edfd6e0f8', 
 310                 'title': 'Taylor Swift - "Ours (VH1 Storytellers
)"', 
 311                 'description': 'Album: Taylor Swift performs "Ours
" for VH1 Storytellers at Harvey Mudd College.', 
 312                 'timestamp': 1352610000, 
 313                 'upload_date': '20121111', 
 318     def _get_thumbnail_url(self, uri, itemdoc): 
 319         return 'http://mtv.mtvnimages.com/uri/' + uri 
 321     def _real_extract(self, url): 
 322         mobj = re.match(self._VALID_URL, url) 
 323         video_id = mobj.group('videoid') 
 324         uri = mobj.groupdict().get('mgid') 
 326             webpage = self._download_webpage(url, video_id) 
 328             # Some videos come from Vevo.com 
 330                 r'(?s)isVevoVideo = true;.*?vevoVideoId = "(.*?
)";', webpage) 
 332                 vevo_id = m_vevo.group(1) 
 333                 self.to_screen('Vevo video detected: %s' % vevo_id) 
 334                 return self.url_result('vevo:%s' % vevo_id, ie='Vevo') 
 336             uri = self._html_search_regex(r'/uri/(.*?)\?', webpage, 'uri') 
 337         return self._get_videos_info(uri) 
 340 class MTVDEIE(MTVServicesInfoExtractor): 
 342     _VALID_URL = r'https?://(?:www\.)?mtv\.de/(?:artists|shows|news)/(?:[^/]+/)*(?P<id>\d+)-[^/#?]+/*(?:[#?].*)?$' 
 344         'url': 'http://www.mtv.de/artists/10571-cro/videos/61131-traum', 
 346             'id': 'music_video-a50bc5f0b3aa4b3190aa', 
 348             'title': 'MusicVideo_cro-traum', 
 349             'description': 'Cro - Traum', 
 353             'skip_download': True, 
 355         'skip': 'Blocked at Travis CI', 
 357         # mediagen URL without query (e.g. http://videos.mtvnn.com/mediagen/e865da714c166d18d6f80893195fcb97) 
 358         'url': 'http://www.mtv.de/shows/933-teen-mom-2/staffeln/5353/folgen/63565-enthullungen', 
 360             'id': 'local_playlist-f5ae778b9832cc837189', 
 362             'title': 'Episode_teen-mom-2_shows_season-5_episode-1_full-episode_part1', 
 366             'skip_download': True, 
 368         'skip': 'Blocked at Travis CI', 
 370         'url': 'http://www.mtv.de/news/77491-mtv-movies-spotlight-pixels-teil-3', 
 372             'id': 'local_playlist-4e760566473c4c8c5344', 
 374             'title': 'Article_mtv-movies-spotlight-pixels-teil-3_short-clips_part1', 
 375             'description': 'MTV Movies Supercut', 
 379             'skip_download': True, 
 381         'skip': 'Das Video kann zur Zeit nicht abgespielt werden.', 
 384     def _real_extract(self, url): 
 385         video_id = self._match_id(url) 
 387         webpage = self._download_webpage(url, video_id) 
 389         playlist = self._parse_json( 
 391                 r'window\.pagePlaylist\s*=\s*(\[.+?\]);\n', webpage, 'page playlist'), 
 395             return item['mrss'] + item.get('mrssvars', '') 
 397         # news pages contain single video in playlist with different id 
 398         if len(playlist) == 1: 
 399             return self._get_videos_info_from_url(_mrss_url(playlist[0]), video_id) 
 401         for item in playlist: 
 402             item_id = item.get('id') 
 403             if item_id and compat_str(item_id) == video_id: 
 404                 return self._get_videos_info_from_url(_mrss_url(item), video_id)