From: Jaime Marquínez Ferrándiz Date: Sun, 10 Aug 2014 08:58:22 +0000 (+0200) Subject: [reverbnation] Simplify json download X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=511c4325dc8e3a60d81d3c23e8eb330b3a706883;p=youtube-dl [reverbnation] Simplify json download We can directly get a json file instead of the jsonp. --- diff --git a/youtube_dl/extractor/reverbnation.py b/youtube_dl/extractor/reverbnation.py index c77849336..b93adfca5 100644 --- a/youtube_dl/extractor/reverbnation.py +++ b/youtube_dl/extractor/reverbnation.py @@ -1,7 +1,6 @@ from __future__ import unicode_literals import re -import time from .common import InfoExtractor from ..utils import strip_jsonp @@ -27,10 +26,8 @@ class ReverbNationIE(InfoExtractor): song_id = mobj.group('id') api_res = self._download_json( - 'https://api.reverbnation.com/song/%s?callback=api_response_5&_=%d' - % (song_id, int(time.time() * 1000)), + 'https://api.reverbnation.com/song/%s' % song_id, song_id, - transform_source=strip_jsonp, note='Downloading information of song %s' % song_id )