]> gitweb @ CieloNegro.org - youtube-dl.git/blobdiff - youtube_dl/extractor/vevo.py
[extractor/__init__] Remove novamov extractor and sort novamov based extractors alpha...
[youtube-dl.git] / youtube_dl / extractor / vevo.py
index 152fef42e2aa052acea07f909eee66cf842e87c5..147480f6465513066db58ce3cf32e194c4ff8490 100644 (file)
@@ -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 {}