From: Sergey M․ Date: Sat, 26 Mar 2016 19:11:11 +0000 (+0600) Subject: [vevo] Update videoservice API URL (Closes #8900) X-Git-Tag: 2016.03.27~7 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=4cf3489c6e548aebe29534e496e7ccd638be6873;p=youtube-dl.git [vevo] Update videoservice API URL (Closes #8900) --- diff --git a/youtube_dl/extractor/vevo.py b/youtube_dl/extractor/vevo.py index 152fef42e2..147480f646 100644 --- 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 {}