2013-06-24 10:31:41 +00:00
|
|
|
import re
|
|
|
|
import json
|
2013-10-08 19:23:55 +00:00
|
|
|
import xml.etree.ElementTree
|
|
|
|
import datetime
|
2013-06-24 10:31:41 +00:00
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
from ..utils import (
|
2013-10-08 19:23:55 +00:00
|
|
|
determine_ext,
|
2013-06-24 10:31:41 +00:00
|
|
|
ExtractorError,
|
|
|
|
)
|
|
|
|
|
2013-10-08 19:23:55 +00:00
|
|
|
|
2013-06-24 10:31:41 +00:00
|
|
|
class VevoIE(InfoExtractor):
|
2013-06-24 11:54:19 +00:00
|
|
|
"""
|
2013-08-11 05:12:38 +00:00
|
|
|
Accepts urls from vevo.com or in the format 'vevo:{id}'
|
2013-06-24 11:54:19 +00:00
|
|
|
(currently used by MTVIE)
|
|
|
|
"""
|
2013-08-21 16:20:03 +00:00
|
|
|
_VALID_URL = r'((http://www.vevo.com/watch/.*?/.*?/)|(vevo:))(?P<id>.*?)(\?|$)'
|
2013-06-27 18:46:46 +00:00
|
|
|
_TEST = {
|
|
|
|
u'url': u'http://www.vevo.com/watch/hurts/somebody-to-die-for/GB1101300280',
|
|
|
|
u'file': u'GB1101300280.mp4',
|
|
|
|
u'info_dict': {
|
2013-08-21 16:20:03 +00:00
|
|
|
u"upload_date": u"20130624",
|
|
|
|
u"uploader": u"Hurts",
|
2013-10-08 19:23:55 +00:00
|
|
|
u"title": u"Somebody to Die For",
|
|
|
|
u'duration': 230,
|
2013-06-27 18:46:46 +00:00
|
|
|
}
|
|
|
|
}
|
2013-06-24 10:31:41 +00:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
|
|
|
video_id = mobj.group('id')
|
|
|
|
|
2013-10-08 19:23:55 +00:00
|
|
|
json_url = 'http://videoplayer.vevo.com/VideoService/AuthenticateVideo?isrc=%s' % video_id
|
2013-06-24 10:31:41 +00:00
|
|
|
info_json = self._download_webpage(json_url, video_id, u'Downloading json info')
|
|
|
|
|
|
|
|
self.report_extraction(video_id)
|
2013-10-08 19:23:55 +00:00
|
|
|
video_info = json.loads(info_json)['video']
|
|
|
|
last_version = {'version': -1}
|
|
|
|
for version in video_info['videoVersions']:
|
|
|
|
# These are the HTTP downloads, other types are for different manifests
|
|
|
|
if version['sourceType'] == 2:
|
|
|
|
if version['version'] > last_version['version']:
|
|
|
|
last_version = version
|
|
|
|
if last_version['version'] == -1:
|
|
|
|
raise ExtractorError(u'Unable to extract last version of the video')
|
|
|
|
|
|
|
|
renditions = xml.etree.ElementTree.fromstring(last_version['data'])
|
|
|
|
formats = []
|
|
|
|
# Already sorted from worst to best quality
|
|
|
|
for rend in renditions.findall('rendition'):
|
|
|
|
attr = rend.attrib
|
|
|
|
f_url = attr['url']
|
|
|
|
formats.append({
|
|
|
|
'url': f_url,
|
|
|
|
'ext': determine_ext(f_url),
|
|
|
|
'height': int(attr['frameheight']),
|
|
|
|
'width': int(attr['frameWidth']),
|
|
|
|
})
|
|
|
|
|
|
|
|
date_epoch = int(self._search_regex(
|
|
|
|
r'/Date\((\d+)\)/', video_info['launchDate'], u'launch date'))/1000
|
|
|
|
upload_date = datetime.datetime.fromtimestamp(date_epoch)
|
|
|
|
info = {
|
|
|
|
'id': video_id,
|
|
|
|
'title': video_info['title'],
|
|
|
|
'formats': formats,
|
|
|
|
'thumbnail': video_info['imageUrl'],
|
|
|
|
'upload_date': upload_date.strftime('%Y%m%d'),
|
|
|
|
'uploader': video_info['mainArtists'][0]['artistName'],
|
|
|
|
'duration': video_info['duration'],
|
|
|
|
}
|
|
|
|
|
|
|
|
# TODO: Remove when #980 has been merged
|
|
|
|
info.update(formats[-1])
|
|
|
|
|
|
|
|
return info
|