1 from __future__ import unicode_literals
4 import xml.etree.ElementTree
7 from .common import InfoExtractor
14 class VevoIE(InfoExtractor):
16 Accepts urls from vevo.com or in the format 'vevo:{id}'
17 (currently used by MTVIE)
20 (?:https?://www\.vevo\.com/watch/(?:[^/]+/[^/]+/)?|
21 https?://cache\.vevo\.com/m/html/embed\.html\?video=|
22 https?://videoplayer\.vevo\.com/embed/embedded\?videoId=|
26 'url': 'http://www.vevo.com/watch/hurts/somebody-to-die-for/GB1101300280',
27 'file': 'GB1101300280.mp4',
28 "md5": "06bea460acb744eab74a9d7dcb4bfd61",
30 "upload_date": "20130624",
32 "title": "Somebody to Die For",
38 _SMIL_BASE_URL = 'http://smil.lvl3.vevo.com/'
40 def _formats_from_json(self, video_info):
41 last_version = {'version': -1}
42 for version in video_info['videoVersions']:
43 # These are the HTTP downloads, other types are for different manifests
44 if version['sourceType'] == 2:
45 if version['version'] > last_version['version']:
46 last_version = version
47 if last_version['version'] == -1:
48 raise ExtractorError('Unable to extract last version of the video')
50 renditions = xml.etree.ElementTree.fromstring(last_version['data'])
52 # Already sorted from worst to best quality
53 for rend in renditions.findall('rendition'):
55 format_note = '%(videoCodec)s@%(videoBitrate)4sk, %(audioCodec)s@%(audioBitrate)3sk' % attr
58 'format_id': attr['name'],
59 'format_note': format_note,
60 'height': int(attr['frameheight']),
61 'width': int(attr['frameWidth']),
65 def _formats_from_smil(self, smil_xml):
67 smil_doc = xml.etree.ElementTree.fromstring(smil_xml.encode('utf-8'))
68 els = smil_doc.findall('.//{http://www.w3.org/2001/SMIL20/Language}video')
70 src = el.attrib['src']
71 m = re.match(r'''(?xi)
74 [/a-z0-9]+ # The directory and main part of the URL
76 _(?P<width>[0-9]+)x(?P<height>[0-9]+)
77 _(?P<vcodec>[a-z0-9]+)
79 _(?P<acodec>[a-z0-9]+)
81 \.[a-z0-9]+ # File extension
86 format_url = self._SMIL_BASE_URL + m.group('path')
89 'format_id': 'SMIL_' + m.group('cbr'),
90 'vcodec': m.group('vcodec'),
91 'acodec': m.group('acodec'),
92 'vbr': int(m.group('vbr')),
93 'abr': int(m.group('abr')),
94 'ext': m.group('ext'),
95 'width': int(m.group('width')),
96 'height': int(m.group('height')),
100 def _real_extract(self, url):
101 mobj = re.match(self._VALID_URL, url)
102 video_id = mobj.group('id')
104 json_url = 'http://videoplayer.vevo.com/VideoService/AuthenticateVideo?isrc=%s' % video_id
105 video_info = self._download_json(json_url, video_id)['video']
107 formats = self._formats_from_json(video_info)
109 smil_url = '%s/Video/V2/VFILE/%s/%sr.smil' % (
110 self._SMIL_BASE_URL, video_id, video_id.lower())
111 smil_xml = self._download_webpage(smil_url, video_id,
112 'Downloading SMIL info')
113 formats.extend(self._formats_from_smil(smil_xml))
114 except ExtractorError as ee:
115 if not isinstance(ee.cause, compat_HTTPError):
117 self._downloader.report_warning(
118 'Cannot download SMIL information, falling back to JSON ..')
120 timestamp_ms = int(self._search_regex(
121 r'/Date\((\d+)\)/', video_info['launchDate'], 'launch date'))
122 upload_date = datetime.datetime.fromtimestamp(timestamp_ms // 1000)
125 'title': video_info['title'],
127 'thumbnail': video_info['imageUrl'],
128 'upload_date': upload_date.strftime('%Y%m%d'),
129 'uploader': video_info['mainArtists'][0]['artistName'],
130 'duration': video_info['duration'],