]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/mtv.py
[BR] replace test
[yt-dlp.git] / youtube_dl / extractor / mtv.py
CommitLineData
32dac694
PH
1from __future__ import unicode_literals
2
fc287219 3import re
fc287219
PH
4
5from .common import InfoExtractor
6from ..utils import (
f7e02595 7 compat_urllib_parse,
340b0468 8 compat_urllib_request,
fc287219 9 ExtractorError,
90834c78 10 find_xpath_attr,
5aafe895 11 fix_xml_ampersands,
0ef68e04 12 HEADRequest,
340b0468 13 unescapeHTML,
8d9453b9
JMF
14 url_basename,
15 RegexNotFoundError,
fc287219
PH
16)
17
90834c78 18
300fcad8
JMF
19def _media_xml_tag(tag):
20 return '{http://search.yahoo.com/mrss/}%s' % tag
fc287219 21
f7e02595 22
84db8181 23class MTVServicesInfoExtractor(InfoExtractor):
340b0468 24 _MOBILE_TEMPLATE = None
f7e02595
JMF
25 @staticmethod
26 def _id_from_uri(uri):
27 return uri.split(':')[-1]
28
29 # This was originally implemented for ComedyCentral, but it also works here
30 @staticmethod
31 def _transform_rtmp_url(rtmp_video_url):
32 m = re.match(r'^rtmpe?://.*?/(?P<finalid>gsp\..+?/.*)$', rtmp_video_url)
33 if not m:
63b7b722 34 return rtmp_video_url
f7e02595 35 base = 'http://mtvnmobile.vo.llnwd.net/kip0/_pxn=1+_pxI0=Ripod-h264+_pxL0=undefined+_pxM0=+_pxK=18639+_pxE=mp4/44620/mtvnorigin/'
ab2f744b
JMF
36 return base + m.group('finalid')
37
38 def _get_thumbnail_url(self, uri, itemdoc):
84db8181
JMF
39 search_path = '%s/%s' % (_media_xml_tag('group'), _media_xml_tag('thumbnail'))
40 thumb_node = itemdoc.find(search_path)
41 if thumb_node is None:
42 return None
43 else:
44 return thumb_node.attrib['url']
f7e02595 45
340b0468
JMF
46 def _extract_mobile_video_formats(self, mtvn_id):
47 webpage_url = self._MOBILE_TEMPLATE % mtvn_id
48 req = compat_urllib_request.Request(webpage_url)
49 # Otherwise we get a webpage that would execute some javascript
50 req.add_header('Youtubedl-user-agent', 'curl/7')
51 webpage = self._download_webpage(req, mtvn_id,
52 'Downloading mobile page')
0ef68e04
JMF
53 metrics_url = unescapeHTML(self._search_regex(r'<a href="(http://metrics.+?)"', webpage, 'url'))
54 req = HEADRequest(metrics_url)
55 response = self._request_webpage(req, mtvn_id, 'Resolving url')
56 url = response.geturl()
57 # Transform the url to get the best quality:
58 url = re.sub(r'.+pxE=mp4', 'http://mtvnmobile.vo.llnwd.net/kip0/_pxn=0+_pxK=18639+_pxE=mp4', url, 1)
59 return [{'url': url,'ext': 'mp4'}]
340b0468
JMF
60
61 def _extract_video_formats(self, mdoc, mtvn_id):
cc1db7f9 62 if re.match(r'.*/(error_country_block\.swf|geoblock\.mp4)$', mdoc.find('.//src').text) is not None:
340b0468 63 if mtvn_id is not None and self._MOBILE_TEMPLATE is not None:
0ef68e04
JMF
64 self.to_screen('The normal version is not available from your '
65 'country, trying with the mobile version')
340b0468 66 return self._extract_mobile_video_formats(mtvn_id)
cc1db7f9
JMF
67 raise ExtractorError('This video is not available from your country.',
68 expected=True)
f7e02595 69
f13d0933
PH
70 formats = []
71 for rendition in mdoc.findall('.//rendition'):
72 try:
73 _, _, ext = rendition.attrib['type'].partition('/')
74 rtmp_video_url = rendition.find('./src').text
75 formats.append({'ext': ext,
76 'url': self._transform_rtmp_url(rtmp_video_url),
77 'format_id': rendition.get('bitrate'),
78 'width': int(rendition.get('width')),
79 'height': int(rendition.get('height')),
80 })
81 except (KeyError, TypeError):
82 raise ExtractorError('Invalid rendition field.')
34d863f3 83 self._sort_formats(formats)
f13d0933 84 return formats
f7e02595
JMF
85
86 def _get_video_info(self, itemdoc):
87 uri = itemdoc.find('guid').text
88 video_id = self._id_from_uri(uri)
89 self.report_extraction(video_id)
300fcad8 90 mediagen_url = itemdoc.find('%s/%s' % (_media_xml_tag('group'), _media_xml_tag('content'))).attrib['url']
321a01f9 91 # Remove the templates, like &device={device}
32dac694 92 mediagen_url = re.sub(r'&[^=]*?={.*?}(?=(&|$))', '', mediagen_url)
f7e02595
JMF
93 if 'acceptMethods' not in mediagen_url:
94 mediagen_url += '&acceptMethods=fms'
6562df76 95
e4f320a4
JMF
96 mediagen_doc = self._download_xml(mediagen_url, video_id,
97 'Downloading video urls')
f7e02595
JMF
98
99 description_node = itemdoc.find('description')
100 if description_node is not None:
0ab4ff63 101 description = description_node.text.strip()
f7e02595
JMF
102 else:
103 description = None
f13d0933 104
90834c78
PH
105 title_el = None
106 if title_el is None:
107 title_el = find_xpath_attr(
108 itemdoc, './/{http://search.yahoo.com/mrss/}category',
109 'scheme', 'urn:mtvn:video_title')
90834c78 110 if title_el is None:
96cb10a5
S
111 title_el = itemdoc.find('.//{http://search.yahoo.com/mrss/}title')
112 if title_el is None:
713d31fa 113 title_el = itemdoc.find('.//title')
1df4229b
PH
114 if title_el.text is None:
115 title_el = None
1df4229b 116
90834c78
PH
117 title = title_el.text
118 if title is None:
119 raise ExtractorError('Could not find video title')
780ee4e5 120 title = title.strip()
90834c78 121
340b0468
JMF
122 # This a short id that's used in the webpage urls
123 mtvn_id = None
124 mtvn_id_node = find_xpath_attr(itemdoc, './/{http://search.yahoo.com/mrss/}category',
125 'scheme', 'urn:mtvn:id')
126 if mtvn_id_node is not None:
127 mtvn_id = mtvn_id_node.text
128
fb7abb31 129 return {
90834c78 130 'title': title,
340b0468 131 'formats': self._extract_video_formats(mediagen_doc, mtvn_id),
f13d0933
PH
132 'id': video_id,
133 'thumbnail': self._get_thumbnail_url(uri, itemdoc),
134 'description': description,
135 }
136
f7e02595
JMF
137 def _get_videos_info(self, uri):
138 video_id = self._id_from_uri(uri)
139 data = compat_urllib_parse.urlencode({'uri': uri})
e2b38da9 140
e2b38da9
PH
141 idoc = self._download_xml(
142 self._FEED_URL + '?' + data, video_id,
32dac694 143 'Downloading info', transform_source=fix_xml_ampersands)
f7e02595 144 return [self._get_video_info(item) for item in idoc.findall('.//item')]
fc287219 145
8d9453b9
JMF
146 def _real_extract(self, url):
147 title = url_basename(url)
148 webpage = self._download_webpage(url, title)
149 try:
4bbf139a
JMF
150 # the url can be http://media.mtvnservices.com/fb/{mgid}.swf
151 # or http://media.mtvnservices.com/{mgid}
152 og_url = self._og_search_video_url(webpage)
153 mgid = url_basename(og_url)
154 if mgid.endswith('.swf'):
155 mgid = mgid[:-4]
8d9453b9 156 except RegexNotFoundError:
b9381e43
JMF
157 mgid = self._search_regex(
158 [r'data-mgid="(.*?)"', r'swfobject.embedSWF\(".*?(mgid:.*?)"'],
159 webpage, u'mgid')
8d9453b9
JMF
160 return self._get_videos_info(mgid)
161
84db8181
JMF
162
163class MTVIE(MTVServicesInfoExtractor):
5c541b2c
JMF
164 _VALID_URL = r'''(?x)^https?://
165 (?:(?:www\.)?mtv\.com/videos/.+?/(?P<videoid>[0-9]+)/[^/]+$|
166 m\.mtv\.com/videos/video\.rbml\?.*?id=(?P<mgid>[^&]+))'''
84db8181
JMF
167
168 _FEED_URL = 'http://www.mtv.com/player/embed/AS3/rss/'
169
170 _TESTS = [
171 {
32dac694
PH
172 'url': 'http://www.mtv.com/videos/misc/853555/ours-vh1-storytellers.jhtml',
173 'file': '853555.mp4',
174 'md5': '850f3f143316b1e71fa56a4edfd6e0f8',
175 'info_dict': {
176 'title': 'Taylor Swift - "Ours (VH1 Storytellers)"',
177 'description': 'Album: Taylor Swift performs "Ours" for VH1 Storytellers at Harvey Mudd College.',
84db8181
JMF
178 },
179 },
180 {
32dac694
PH
181 'add_ie': ['Vevo'],
182 'url': 'http://www.mtv.com/videos/taylor-swift/916187/everything-has-changed-ft-ed-sheeran.jhtml',
183 'file': 'USCJY1331283.mp4',
184 'md5': '73b4e7fcadd88929292fe52c3ced8caf',
185 'info_dict': {
186 'title': 'Everything Has Changed',
187 'upload_date': '20130606',
188 'uploader': 'Taylor Swift',
84db8181 189 },
32dac694 190 'skip': 'VEVO is only available in some countries',
84db8181
JMF
191 },
192 ]
193
194 def _get_thumbnail_url(self, uri, itemdoc):
195 return 'http://mtv.mtvnimages.com/uri/' + uri
196
fc287219
PH
197 def _real_extract(self, url):
198 mobj = re.match(self._VALID_URL, url)
fc287219 199 video_id = mobj.group('videoid')
c801b205 200 uri = mobj.groupdict().get('mgid')
5c541b2c
JMF
201 if uri is None:
202 webpage = self._download_webpage(url, video_id)
203
204 # Some videos come from Vevo.com
205 m_vevo = re.search(r'isVevoVideo = true;.*?vevoVideoId = "(.*?)";',
206 webpage, re.DOTALL)
207 if m_vevo:
208 vevo_id = m_vevo.group(1);
32dac694 209 self.to_screen('Vevo video detected: %s' % vevo_id)
5c541b2c
JMF
210 return self.url_result('vevo:%s' % vevo_id, ie='Vevo')
211
32dac694 212 uri = self._html_search_regex(r'/uri/(.*?)\?', webpage, 'uri')
f7e02595 213 return self._get_videos_info(uri)
bc4ba05f
JMF
214
215
216class MTVIggyIE(MTVServicesInfoExtractor):
217 IE_NAME = 'mtviggy.com'
218 _VALID_URL = r'https?://www\.mtviggy\.com/videos/.+'
219 _TEST = {
220 'url': 'http://www.mtviggy.com/videos/arcade-fire-behind-the-scenes-at-the-biggest-music-experiment-yet/',
221 'info_dict': {
222 'id': '984696',
223 'ext': 'mp4',
af1588c0 224 'title': 'Arcade Fire: Behind the Scenes at the Biggest Music Experiment Yet',
bc4ba05f
JMF
225 }
226 }
227 _FEED_URL = 'http://all.mtvworldverticals.com/feed-xml/'