[compat] Add compat_urllib_parse_urlencode and eliminate encode_dict
[youtube-dl] / youtube_dl / extractor / mtv.py
1 from __future__ import unicode_literals
2
3 import re
4
5 from .common import InfoExtractor
6 from ..compat import (
7     compat_urllib_parse_urlencode,
8     compat_str,
9 )
10 from ..utils import (
11     ExtractorError,
12     find_xpath_attr,
13     fix_xml_ampersands,
14     float_or_none,
15     HEADRequest,
16     sanitized_Request,
17     unescapeHTML,
18     url_basename,
19     RegexNotFoundError,
20     xpath_text,
21 )
22
23
24 def _media_xml_tag(tag):
25     return '{http://search.yahoo.com/mrss/}%s' % tag
26
27
28 class MTVServicesInfoExtractor(InfoExtractor):
29     _MOBILE_TEMPLATE = None
30     _LANG = None
31
32     @staticmethod
33     def _id_from_uri(uri):
34         return uri.split(':')[-1]
35
36     # This was originally implemented for ComedyCentral, but it also works here
37     @staticmethod
38     def _transform_rtmp_url(rtmp_video_url):
39         m = re.match(r'^rtmpe?://.*?/(?P<finalid>gsp\..+?/.*)$', rtmp_video_url)
40         if not m:
41             return rtmp_video_url
42         base = 'http://viacommtvstrmfs.fplive.net/'
43         return base + m.group('finalid')
44
45     def _get_feed_url(self, uri):
46         return self._FEED_URL
47
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:
52             return None
53         else:
54             return thumb_node.attrib['url']
55
56     def _extract_mobile_video_formats(self, mtvn_id):
57         webpage_url = self._MOBILE_TEMPLATE % mtvn_id
58         req = sanitized_Request(webpage_url)
59         # Otherwise we get a webpage that would execute some javascript
60         req.add_header('User-Agent', 'curl/7')
61         webpage = self._download_webpage(req, mtvn_id,
62                                          'Downloading mobile page')
63         metrics_url = unescapeHTML(self._search_regex(r'<a href="(http://metrics.+?)"', webpage, 'url'))
64         req = HEADRequest(metrics_url)
65         response = self._request_webpage(req, mtvn_id, 'Resolving url')
66         url = response.geturl()
67         # Transform the url to get the best quality:
68         url = re.sub(r'.+pxE=mp4', 'http://mtvnmobile.vo.llnwd.net/kip0/_pxn=0+_pxK=18639+_pxE=mp4', url, 1)
69         return [{'url': url, 'ext': 'mp4'}]
70
71     def _extract_video_formats(self, mdoc, mtvn_id):
72         if re.match(r'.*/(error_country_block\.swf|geoblock\.mp4|copyright_error\.flv(?:\?geo\b.+?)?)$', mdoc.find('.//src').text) is not None:
73             if mtvn_id is not None and self._MOBILE_TEMPLATE is not None:
74                 self.to_screen('The normal version is not available from your '
75                                'country, trying with the mobile version')
76                 return self._extract_mobile_video_formats(mtvn_id)
77             raise ExtractorError('This video is not available from your country.',
78                                  expected=True)
79
80         formats = []
81         for rendition in mdoc.findall('.//rendition'):
82             try:
83                 _, _, ext = rendition.attrib['type'].partition('/')
84                 rtmp_video_url = rendition.find('./src').text
85                 if rtmp_video_url.endswith('siteunavail.png'):
86                     continue
87                 formats.append({
88                     'ext': ext,
89                     'url': self._transform_rtmp_url(rtmp_video_url),
90                     'format_id': rendition.get('bitrate'),
91                     'width': int(rendition.get('width')),
92                     'height': int(rendition.get('height')),
93                 })
94             except (KeyError, TypeError):
95                 raise ExtractorError('Invalid rendition field.')
96         self._sort_formats(formats)
97         return formats
98
99     def _extract_subtitles(self, mdoc, mtvn_id):
100         subtitles = {}
101         for transcript in mdoc.findall('.//transcript'):
102             if transcript.get('kind') != 'captions':
103                 continue
104             lang = transcript.get('srclang')
105             subtitles[lang] = [{
106                 'url': compat_str(typographic.get('src')),
107                 'ext': typographic.get('format')
108             } for typographic in transcript.findall('./typographic')]
109         return subtitles
110
111     def _get_video_info(self, itemdoc):
112         uri = itemdoc.find('guid').text
113         video_id = self._id_from_uri(uri)
114         self.report_extraction(video_id)
115         content_el = itemdoc.find('%s/%s' % (_media_xml_tag('group'), _media_xml_tag('content')))
116         mediagen_url = content_el.attrib['url']
117         # Remove the templates, like &device={device}
118         mediagen_url = re.sub(r'&[^=]*?={.*?}(?=(&|$))', '', mediagen_url)
119         if 'acceptMethods' not in mediagen_url:
120             mediagen_url += '&' if '?' in mediagen_url else '?'
121             mediagen_url += 'acceptMethods=fms'
122
123         mediagen_doc = self._download_xml(mediagen_url, video_id,
124                                           'Downloading video urls')
125
126         item = mediagen_doc.find('./video/item')
127         if item is not None and item.get('type') == 'text':
128             message = '%s returned error: ' % self.IE_NAME
129             if item.get('code') is not None:
130                 message += '%s - ' % item.get('code')
131             message += item.text
132             raise ExtractorError(message, expected=True)
133
134         description = xpath_text(itemdoc, 'description')
135
136         title_el = None
137         if title_el is None:
138             title_el = find_xpath_attr(
139                 itemdoc, './/{http://search.yahoo.com/mrss/}category',
140                 'scheme', 'urn:mtvn:video_title')
141         if title_el is None:
142             title_el = itemdoc.find('.//{http://search.yahoo.com/mrss/}title')
143         if title_el is None:
144             title_el = itemdoc.find('.//title') or itemdoc.find('./title')
145             if title_el.text is None:
146                 title_el = None
147
148         title = title_el.text
149         if title is None:
150             raise ExtractorError('Could not find video title')
151         title = title.strip()
152
153         # This a short id that's used in the webpage urls
154         mtvn_id = None
155         mtvn_id_node = find_xpath_attr(itemdoc, './/{http://search.yahoo.com/mrss/}category',
156                                        'scheme', 'urn:mtvn:id')
157         if mtvn_id_node is not None:
158             mtvn_id = mtvn_id_node.text
159
160         return {
161             'title': title,
162             'formats': self._extract_video_formats(mediagen_doc, mtvn_id),
163             'subtitles': self._extract_subtitles(mediagen_doc, mtvn_id),
164             'id': video_id,
165             'thumbnail': self._get_thumbnail_url(uri, itemdoc),
166             'description': description,
167             'duration': float_or_none(content_el.attrib.get('duration')),
168         }
169
170     def _get_feed_query(self, uri):
171         data = {'uri': uri}
172         if self._LANG:
173             data['lang'] = self._LANG
174         return compat_urllib_parse_urlencode(data)
175
176     def _get_videos_info(self, uri):
177         video_id = self._id_from_uri(uri)
178         feed_url = self._get_feed_url(uri)
179         info_url = feed_url + '?' + self._get_feed_query(uri)
180         return self._get_videos_info_from_url(info_url, video_id)
181
182     def _get_videos_info_from_url(self, url, video_id):
183         idoc = self._download_xml(
184             url, video_id,
185             'Downloading info', transform_source=fix_xml_ampersands)
186         return self.playlist_result(
187             [self._get_video_info(item) for item in idoc.findall('.//item')])
188
189     def _extract_mgid(self, webpage):
190         try:
191             # the url can be http://media.mtvnservices.com/fb/{mgid}.swf
192             # or http://media.mtvnservices.com/{mgid}
193             og_url = self._og_search_video_url(webpage)
194             mgid = url_basename(og_url)
195             if mgid.endswith('.swf'):
196                 mgid = mgid[:-4]
197         except RegexNotFoundError:
198             mgid = None
199
200         if mgid is None or ':' not in mgid:
201             mgid = self._search_regex(
202                 [r'data-mgid="(.*?)"', r'swfobject.embedSWF\(".*?(mgid:.*?)"'],
203                 webpage, 'mgid', default=None)
204
205         if not mgid:
206             sm4_embed = self._html_search_meta(
207                 'sm4:video:embed', webpage, 'sm4 embed', default='')
208             mgid = self._search_regex(
209                 r'embed/(mgid:.+?)["\'&?/]', sm4_embed, 'mgid')
210         return mgid
211
212     def _real_extract(self, url):
213         title = url_basename(url)
214         webpage = self._download_webpage(url, title)
215         mgid = self._extract_mgid(webpage)
216         videos_info = self._get_videos_info(mgid)
217         return videos_info
218
219
220 class MTVServicesEmbeddedIE(MTVServicesInfoExtractor):
221     IE_NAME = 'mtvservices:embedded'
222     _VALID_URL = r'https?://media\.mtvnservices\.com/embed/(?P<mgid>.+?)(\?|/|$)'
223
224     _TEST = {
225         # From http://www.thewrap.com/peter-dinklage-sums-up-game-of-thrones-in-45-seconds-video/
226         'url': 'http://media.mtvnservices.com/embed/mgid:uma:video:mtv.com:1043906/cp~vid%3D1043906%26uri%3Dmgid%3Auma%3Avideo%3Amtv.com%3A1043906',
227         'md5': 'cb349b21a7897164cede95bd7bf3fbb9',
228         'info_dict': {
229             'id': '1043906',
230             'ext': 'mp4',
231             'title': 'Peter Dinklage Sums Up \'Game Of Thrones\' In 45 Seconds',
232             'description': '"Sexy sexy sexy, stabby stabby stabby, beautiful language," says Peter Dinklage as he tries summarizing "Game of Thrones" in under a minute.',
233         },
234     }
235
236     @staticmethod
237     def _extract_url(webpage):
238         mobj = re.search(
239             r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//media.mtvnservices.com/embed/.+?)\1', webpage)
240         if mobj:
241             return mobj.group('url')
242
243     def _get_feed_url(self, uri):
244         video_id = self._id_from_uri(uri)
245         site_id = uri.replace(video_id, '')
246         config_url = ('http://media.mtvnservices.com/pmt/e1/players/{0}/'
247                       'context4/context5/config.xml'.format(site_id))
248         config_doc = self._download_xml(config_url, video_id)
249         feed_node = config_doc.find('.//feed')
250         feed_url = feed_node.text.strip().split('?')[0]
251         return feed_url
252
253     def _real_extract(self, url):
254         mobj = re.match(self._VALID_URL, url)
255         mgid = mobj.group('mgid')
256         return self._get_videos_info(mgid)
257
258
259 class MTVIE(MTVServicesInfoExtractor):
260     _VALID_URL = r'''(?x)^https?://
261         (?:(?:www\.)?mtv\.com/videos/.+?/(?P<videoid>[0-9]+)/[^/]+$|
262            m\.mtv\.com/videos/video\.rbml\?.*?id=(?P<mgid>[^&]+))'''
263
264     _FEED_URL = 'http://www.mtv.com/player/embed/AS3/rss/'
265
266     _TESTS = [
267         {
268             'url': 'http://www.mtv.com/videos/misc/853555/ours-vh1-storytellers.jhtml',
269             'md5': '850f3f143316b1e71fa56a4edfd6e0f8',
270             'info_dict': {
271                 'id': '853555',
272                 'ext': 'mp4',
273                 'title': 'Taylor Swift - "Ours (VH1 Storytellers)"',
274                 'description': 'Album: Taylor Swift performs "Ours" for VH1 Storytellers at Harvey Mudd College.',
275             },
276         },
277     ]
278
279     def _get_thumbnail_url(self, uri, itemdoc):
280         return 'http://mtv.mtvnimages.com/uri/' + uri
281
282     def _real_extract(self, url):
283         mobj = re.match(self._VALID_URL, url)
284         video_id = mobj.group('videoid')
285         uri = mobj.groupdict().get('mgid')
286         if uri is None:
287             webpage = self._download_webpage(url, video_id)
288
289             # Some videos come from Vevo.com
290             m_vevo = re.search(
291                 r'(?s)isVevoVideo = true;.*?vevoVideoId = "(.*?)";', webpage)
292             if m_vevo:
293                 vevo_id = m_vevo.group(1)
294                 self.to_screen('Vevo video detected: %s' % vevo_id)
295                 return self.url_result('vevo:%s' % vevo_id, ie='Vevo')
296
297             uri = self._html_search_regex(r'/uri/(.*?)\?', webpage, 'uri')
298         return self._get_videos_info(uri)
299
300
301 class MTVIggyIE(MTVServicesInfoExtractor):
302     IE_NAME = 'mtviggy.com'
303     _VALID_URL = r'https?://www\.mtviggy\.com/videos/.+'
304     _TEST = {
305         'url': 'http://www.mtviggy.com/videos/arcade-fire-behind-the-scenes-at-the-biggest-music-experiment-yet/',
306         'info_dict': {
307             'id': '984696',
308             'ext': 'mp4',
309             'title': 'Arcade Fire: Behind the Scenes at the Biggest Music Experiment Yet',
310         }
311     }
312     _FEED_URL = 'http://all.mtvworldverticals.com/feed-xml/'
313
314
315 class MTVDEIE(MTVServicesInfoExtractor):
316     IE_NAME = 'mtv.de'
317     _VALID_URL = r'https?://(?:www\.)?mtv\.de/(?:artists|shows|news)/(?:[^/]+/)*(?P<id>\d+)-[^/#?]+/*(?:[#?].*)?$'
318     _TESTS = [{
319         'url': 'http://www.mtv.de/artists/10571-cro/videos/61131-traum',
320         'info_dict': {
321             'id': 'music_video-a50bc5f0b3aa4b3190aa',
322             'ext': 'mp4',
323             'title': 'MusicVideo_cro-traum',
324             'description': 'Cro - Traum',
325         },
326         'params': {
327             # rtmp download
328             'skip_download': True,
329         },
330     }, {
331         # mediagen URL without query (e.g. http://videos.mtvnn.com/mediagen/e865da714c166d18d6f80893195fcb97)
332         'url': 'http://www.mtv.de/shows/933-teen-mom-2/staffeln/5353/folgen/63565-enthullungen',
333         'info_dict': {
334             'id': 'local_playlist-f5ae778b9832cc837189',
335             'ext': 'mp4',
336             'title': 'Episode_teen-mom-2_shows_season-5_episode-1_full-episode_part1',
337         },
338         'params': {
339             # rtmp download
340             'skip_download': True,
341         },
342     }, {
343         # single video in pagePlaylist with different id
344         'url': 'http://www.mtv.de/news/77491-mtv-movies-spotlight-pixels-teil-3',
345         'info_dict': {
346             'id': 'local_playlist-4e760566473c4c8c5344',
347             'ext': 'mp4',
348             'title': 'Article_mtv-movies-spotlight-pixels-teil-3_short-clips_part1',
349             'description': 'MTV Movies Supercut',
350         },
351         'params': {
352             # rtmp download
353             'skip_download': True,
354         },
355     }]
356
357     def _real_extract(self, url):
358         video_id = self._match_id(url)
359
360         webpage = self._download_webpage(url, video_id)
361
362         playlist = self._parse_json(
363             self._search_regex(
364                 r'window\.pagePlaylist\s*=\s*(\[.+?\]);\n', webpage, 'page playlist'),
365             video_id)
366
367         # news pages contain single video in playlist with different id
368         if len(playlist) == 1:
369             return self._get_videos_info_from_url(playlist[0]['mrss'], video_id)
370
371         for item in playlist:
372             item_id = item.get('id')
373             if item_id and compat_str(item_id) == video_id:
374                 return self._get_videos_info_from_url(item['mrss'], video_id)