]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/vevo.py
43f6b029da8ff5df7fe808c11a85f8a8120f8ca5
1 from __future__
import unicode_literals
4 import xml
.etree
.ElementTree
6 from .common
import InfoExtractor
15 class VevoIE(InfoExtractor
):
17 Accepts urls from vevo.com or in the format 'vevo:{id}'
18 (currently used by MTVIE and MySpaceIE)
21 (?:https?://www\.vevo\.com/watch/(?:[^/]+/(?:[^/]+/)?)?|
22 https?://cache\.vevo\.com/m/html/embed\.html\?video=|
23 https?://videoplayer\.vevo\.com/embed/embedded\?videoId=|
28 'url': 'http://www.vevo.com/watch/hurts/somebody-to-die-for/GB1101300280',
29 "md5": "95ee28ee45e70130e3ab02b0f579ae23",
33 "upload_date": "20130624",
35 "title": "Somebody to Die For",
39 # timestamp and upload_date are often incorrect; seem to change randomly
43 'note': 'v3 SMIL format',
44 'url': 'http://www.vevo.com/watch/cassadee-pope/i-wish-i-could-break-your-heart/USUV71302923',
45 'md5': 'f6ab09b034f8c22969020b042e5ac7fc',
49 'upload_date': '20140219',
50 'uploader': 'Cassadee Pope',
51 'title': 'I Wish I Could Break Your Heart',
57 'note': 'Age-limited video',
58 'url': 'https://www.vevo.com/watch/justin-timberlake/tunnel-vision-explicit/USRV81300282',
63 'title': 'Tunnel Vision (Explicit)',
64 'uploader': 'Justin Timberlake',
65 'upload_date': 're:2013070[34]',
69 'skip_download': 'true',
72 _SMIL_BASE_URL
= 'http://smil.lvl3.vevo.com/'
74 def _real_initialize(self
):
75 req
= compat_urllib_request
.Request(
76 'http://www.vevo.com/auth', data
=b
'')
77 webpage
= self
._download
_webpage
(
79 note
='Retrieving oauth token',
80 errnote
='Unable to retrieve oauth token',
83 self
._oauth
_token
= None
85 self
._oauth
_token
= self
._search
_regex
(
86 r
'access_token":\s*"([^"]+)"',
87 webpage
, 'access token', fatal
=False)
89 def _formats_from_json(self
, video_info
):
90 last_version
= {'version': -1}
91 for version
in video_info
['videoVersions']:
92 # These are the HTTP downloads, other types are for different manifests
93 if version
['sourceType'] == 2:
94 if version
['version'] > last_version
['version']:
95 last_version
= version
96 if last_version
['version'] == -1:
97 raise ExtractorError('Unable to extract last version of the video')
99 renditions
= xml
.etree
.ElementTree
.fromstring(last_version
['data'])
101 # Already sorted from worst to best quality
102 for rend
in renditions
.findall('rendition'):
104 format_note
= '%(videoCodec)s@%(videoBitrate)4sk, %(audioCodec)s@%(audioBitrate)3sk' % attr
107 'format_id': attr
['name'],
108 'format_note': format_note
,
109 'height': int(attr
['frameheight']),
110 'width': int(attr
['frameWidth']),
114 def _formats_from_smil(self
, smil_xml
):
116 smil_doc
= xml
.etree
.ElementTree
.fromstring(smil_xml
.encode('utf-8'))
117 els
= smil_doc
.findall('.//{http://www.w3.org/2001/SMIL20/Language}video')
119 src
= el
.attrib
['src']
120 m
= re
.match(r
'''(?xi)
123 [/a-z0-9]+ # The directory and main part of the URL
125 _(?P<width>[0-9]+)x(?P<height>[0-9]+)
126 _(?P<vcodec>[a-z0-9]+)
128 _(?P<acodec>[a-z0-9]+)
130 \.[a-z0-9]+ # File extension
135 format_url
= self
._SMIL
_BASE
_URL
+ m
.group('path')
138 'format_id': 'SMIL_' + m
.group('cbr'),
139 'vcodec': m
.group('vcodec'),
140 'acodec': m
.group('acodec'),
141 'vbr': int(m
.group('vbr')),
142 'abr': int(m
.group('abr')),
143 'ext': m
.group('ext'),
144 'width': int(m
.group('width')),
145 'height': int(m
.group('height')),
149 def _download_api_formats(self
, video_id
):
150 if not self
._oauth
_token
:
151 self
._downloader
.report_warning(
152 'No oauth token available, skipping API HLS download')
155 api_url
= 'https://apiv2.vevo.com/video/%s/streams/hls?token=%s' % (
156 video_id
, self
._oauth
_token
)
157 api_data
= self
._download
_json
(
159 note
='Downloading HLS formats',
160 errnote
='Failed to download HLS format list', fatal
=False)
164 m3u8_url
= api_data
[0]['url']
165 return self
._extract
_m
3u8_formats
(
166 m3u8_url
, video_id
, entry_protocol
='m3u8_native', ext
='mp4',
169 def _real_extract(self
, url
):
170 mobj
= re
.match(self
._VALID
_URL
, url
)
171 video_id
= mobj
.group('id')
173 json_url
= 'http://videoplayer.vevo.com/VideoService/AuthenticateVideo?isrc=%s' % video_id
174 response
= self
._download
_json
(json_url
, video_id
)
175 video_info
= response
['video']
178 if 'statusMessage' in response
:
179 raise ExtractorError('%s said: %s' % (self
.IE_NAME
, response
['statusMessage']), expected
=True)
180 raise ExtractorError('Unable to extract videos')
182 formats
= self
._formats
_from
_json
(video_info
)
184 is_explicit
= video_info
.get('isExplicit')
185 if is_explicit
is True:
187 elif is_explicit
is False:
192 # Download via HLS API
193 formats
.extend(self
._download
_api
_formats
(video_id
))
195 self
._sort
_formats
(formats
)
196 timestamp_ms
= int(self
._search
_regex
(
197 r
'/Date\((\d+)\)/', video_info
['launchDate'], 'launch date'))
201 'title': video_info
['title'],
203 'thumbnail': video_info
['imageUrl'],
204 'timestamp': timestamp_ms
// 1000,
205 'uploader': video_info
['mainArtists'][0]['artistName'],
206 'duration': video_info
['duration'],
207 'age_limit': age_limit
,