projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b24ab3e
)
[vevo] Update videoservice API URL (Closes #8900)
author
Sergey M․
<dstftw@gmail.com>
Sat, 26 Mar 2016 19:11:11 +0000
(
01:11
+0600)
committer
Sergey M․
<dstftw@gmail.com>
Sat, 26 Mar 2016 19:11:11 +0000
(
01:11
+0600)
youtube_dl/extractor/vevo.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/vevo.py
b/youtube_dl/extractor/vevo.py
index 152fef42e2aa052acea07f909eee66cf842e87c5..147480f6465513066db58ce3cf32e194c4ff8490 100644
(file)
--- a/
youtube_dl/extractor/vevo.py
+++ b/
youtube_dl/extractor/vevo.py
@@
-152,7
+152,7
@@
class VevoIE(InfoExtractor):
def _real_extract(self, url):
video_id = self._match_id(url)
- json_url = 'http://
videoplayer
.vevo.com/VideoService/AuthenticateVideo?isrc=%s' % video_id
+ json_url = 'http://
api
.vevo.com/VideoService/AuthenticateVideo?isrc=%s' % video_id
response = self._download_json(
json_url, video_id, 'Downloading video info', 'Unable to download info')
video_info = response.get('video') or {}