[jukebox] call YoutubeIE if necessary
[youtube-dl] / youtube_dl / extractor / mtv.py
1 import re
2 import socket
3 import xml.etree.ElementTree
4
5 from .common import InfoExtractor
6 from ..utils import (
7     compat_http_client,
8     compat_str,
9     compat_urllib_error,
10     compat_urllib_request,
11
12     ExtractorError,
13 )
14
15
16 class MTVIE(InfoExtractor):
17     _VALID_URL = r'^(?P<proto>https?://)?(?:www\.)?mtv\.com/videos/[^/]+/(?P<videoid>[0-9]+)/[^/]+$'
18     _WORKING = False
19
20     def _real_extract(self, url):
21         mobj = re.match(self._VALID_URL, url)
22         if mobj is None:
23             raise ExtractorError(u'Invalid URL: %s' % url)
24         if not mobj.group('proto'):
25             url = 'http://' + url
26         video_id = mobj.group('videoid')
27
28         webpage = self._download_webpage(url, video_id)
29
30         #song_name = self._html_search_regex(r'<meta name="mtv_vt" content="([^"]+)"/>',
31         #    webpage, u'song name', fatal=False)
32
33         video_title = self._html_search_regex(r'<meta name="mtv_an" content="([^"]+)"/>',
34             webpage, u'title')
35
36         mtvn_uri = self._html_search_regex(r'<meta name="mtvn_uri" content="([^"]+)"/>',
37             webpage, u'mtvn_uri', fatal=False)
38
39         content_id = self._search_regex(r'MTVN.Player.defaultPlaylistId = ([0-9]+);',
40             webpage, u'content id', fatal=False)
41
42         videogen_url = 'http://www.mtv.com/player/includes/mediaGen.jhtml?uri=' + mtvn_uri + '&id=' + content_id + '&vid=' + video_id + '&ref=www.mtvn.com&viewUri=' + mtvn_uri
43         self.report_extraction(video_id)
44         request = compat_urllib_request.Request(videogen_url)
45         try:
46             metadataXml = compat_urllib_request.urlopen(request).read()
47         except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
48             raise ExtractorError(u'Unable to download video metadata: %s' % compat_str(err))
49
50         mdoc = xml.etree.ElementTree.fromstring(metadataXml)
51         renditions = mdoc.findall('.//rendition')
52
53         # For now, always pick the highest quality.
54         rendition = renditions[-1]
55
56         try:
57             _,_,ext = rendition.attrib['type'].partition('/')
58             format = ext + '-' + rendition.attrib['width'] + 'x' + rendition.attrib['height'] + '_' + rendition.attrib['bitrate']
59             video_url = rendition.find('./src').text
60         except KeyError:
61             raise ExtractorError('Invalid rendition field.')
62
63         info = {
64             'id': video_id,
65             'url': video_url,
66             'upload_date': None,
67             'title': video_title,
68             'ext': ext,
69             'format': format,
70         }
71
72         return [info]