]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/vevo.py
571289421e2d63e9e55b036a54ee952e98ccfead
1 from __future__
import unicode_literals
5 from .common
import InfoExtractor
6 from ..compat
import compat_etree_fromstring
14 class VevoIE(InfoExtractor
):
16 Accepts urls from vevo.com or in the format 'vevo:{id}'
17 (currently used by MTVIE and MySpaceIE)
20 (?:https?://www\.vevo\.com/watch/(?:[^/]+/(?:[^/]+/)?)?|
21 https?://cache\.vevo\.com/m/html/embed\.html\?video=|
22 https?://videoplayer\.vevo\.com/embed/embedded\?videoId=|
27 'url': 'http://www.vevo.com/watch/hurts/somebody-to-die-for/GB1101300280',
28 "md5": "95ee28ee45e70130e3ab02b0f579ae23",
32 "upload_date": "20130624",
34 "title": "Somebody to Die For",
38 # timestamp and upload_date are often incorrect; seem to change randomly
42 'note': 'v3 SMIL format',
43 'url': 'http://www.vevo.com/watch/cassadee-pope/i-wish-i-could-break-your-heart/USUV71302923',
44 'md5': 'f6ab09b034f8c22969020b042e5ac7fc',
48 'upload_date': '20140219',
49 'uploader': 'Cassadee Pope',
50 'title': 'I Wish I Could Break Your Heart',
56 'note': 'Age-limited video',
57 'url': 'https://www.vevo.com/watch/justin-timberlake/tunnel-vision-explicit/USRV81300282',
62 'title': 'Tunnel Vision (Explicit)',
63 'uploader': 'Justin Timberlake',
64 'upload_date': 're:2013070[34]',
68 'skip_download': 'true',
71 _SMIL_BASE_URL
= 'http://smil.lvl3.vevo.com/'
73 def _real_initialize(self
):
74 req
= sanitized_Request(
75 'http://www.vevo.com/auth', data
=b
'')
76 webpage
= self
._download
_webpage
(
78 note
='Retrieving oauth token',
79 errnote
='Unable to retrieve oauth token',
82 self
._oauth
_token
= None
84 self
._oauth
_token
= self
._search
_regex
(
85 r
'access_token":\s*"([^"]+)"',
86 webpage
, 'access token', fatal
=False)
88 def _formats_from_json(self
, video_info
):
89 last_version
= {'version': -1}
90 for version
in video_info
['videoVersions']:
91 # These are the HTTP downloads, other types are for different manifests
92 if version
['sourceType'] == 2:
93 if version
['version'] > last_version
['version']:
94 last_version
= version
95 if last_version
['version'] == -1:
96 raise ExtractorError('Unable to extract last version of the video')
98 renditions
= compat_etree_fromstring(last_version
['data'])
100 # Already sorted from worst to best quality
101 for rend
in renditions
.findall('rendition'):
103 format_note
= '%(videoCodec)s@%(videoBitrate)4sk, %(audioCodec)s@%(audioBitrate)3sk' % attr
106 'format_id': attr
['name'],
107 'format_note': format_note
,
108 'height': int(attr
['frameheight']),
109 'width': int(attr
['frameWidth']),
113 def _formats_from_smil(self
, smil_xml
):
115 smil_doc
= compat_etree_fromstring(smil_xml
.encode('utf-8'))
116 els
= smil_doc
.findall('.//{http://www.w3.org/2001/SMIL20/Language}video')
118 src
= el
.attrib
['src']
119 m
= re
.match(r
'''(?xi)
122 [/a-z0-9]+ # The directory and main part of the URL
124 _(?P<width>[0-9]+)x(?P<height>[0-9]+)
125 _(?P<vcodec>[a-z0-9]+)
127 _(?P<acodec>[a-z0-9]+)
129 \.[a-z0-9]+ # File extension
134 format_url
= self
._SMIL
_BASE
_URL
+ m
.group('path')
137 'format_id': 'SMIL_' + m
.group('cbr'),
138 'vcodec': m
.group('vcodec'),
139 'acodec': m
.group('acodec'),
140 'vbr': int(m
.group('vbr')),
141 'abr': int(m
.group('abr')),
142 'ext': m
.group('ext'),
143 'width': int(m
.group('width')),
144 'height': int(m
.group('height')),
148 def _download_api_formats(self
, video_id
):
149 if not self
._oauth
_token
:
150 self
._downloader
.report_warning(
151 'No oauth token available, skipping API HLS download')
154 api_url
= 'https://apiv2.vevo.com/video/%s/streams/hls?token=%s' % (
155 video_id
, self
._oauth
_token
)
156 api_data
= self
._download
_json
(
158 note
='Downloading HLS formats',
159 errnote
='Failed to download HLS format list', fatal
=False)
163 m3u8_url
= api_data
[0]['url']
164 return self
._extract
_m
3u8_formats
(
165 m3u8_url
, video_id
, entry_protocol
='m3u8_native', ext
='mp4',
168 def _real_extract(self
, url
):
169 mobj
= re
.match(self
._VALID
_URL
, url
)
170 video_id
= mobj
.group('id')
172 json_url
= 'http://videoplayer.vevo.com/VideoService/AuthenticateVideo?isrc=%s' % video_id
173 response
= self
._download
_json
(json_url
, video_id
)
174 video_info
= response
['video']
177 if 'statusMessage' in response
:
178 raise ExtractorError('%s said: %s' % (self
.IE_NAME
, response
['statusMessage']), expected
=True)
179 raise ExtractorError('Unable to extract videos')
181 formats
= self
._formats
_from
_json
(video_info
)
183 is_explicit
= video_info
.get('isExplicit')
184 if is_explicit
is True:
186 elif is_explicit
is False:
191 # Download via HLS API
192 formats
.extend(self
._download
_api
_formats
(video_id
))
195 smil_blocks
= sorted((
196 f
for f
in video_info
['videoVersions']
197 if f
['sourceType'] == 13),
198 key
=lambda f
: f
['version'])
199 smil_url
= '%s/Video/V2/VFILE/%s/%sr.smil' % (
200 self
._SMIL
_BASE
_URL
, video_id
, video_id
.lower())
202 smil_url_m
= self
._search
_regex
(
203 r
'url="([^"]+)"', smil_blocks
[-1]['data'], 'SMIL URL',
205 if smil_url_m
is not None:
206 smil_url
= smil_url_m
208 smil_xml
= self
._download
_webpage
(
209 smil_url
, video_id
, 'Downloading SMIL info', fatal
=False)
211 formats
.extend(self
._formats
_from
_smil
(smil_xml
))
213 self
._sort
_formats
(formats
)
214 timestamp_ms
= int_or_none(self
._search
_regex
(
216 video_info
['launchDate'], 'launch date', fatal
=False))
220 'title': video_info
['title'],
222 'thumbnail': video_info
['imageUrl'],
223 'timestamp': timestamp_ms
// 1000,
224 'uploader': video_info
['mainArtists'][0]['artistName'],
225 'duration': video_info
['duration'],
226 'age_limit': age_limit
,