youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit bda44f31a1e18d71dc1cc7a2a3a754593ecd63d3
parent 6621ca39a3f03e44648b54bd8ff57814362f5dbc
Author: Sergey M․ <dstftw@gmail.com>
Date:   Mon, 20 Apr 2015 22:33:35 +0600

[bambuser] Modernize

Diffstat:
Myoutube_dl/extractor/bambuser.py | 11+++++------
1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/youtube_dl/extractor/bambuser.py b/youtube_dl/extractor/bambuser.py @@ -35,12 +35,11 @@ class BambuserIE(InfoExtractor): } def _real_extract(self, url): - mobj = re.match(self._VALID_URL, url) - video_id = mobj.group('id') - info_url = ('http://player-c.api.bambuser.com/getVideo.json?' - '&api_key=%s&vid=%s' % (self._API_KEY, video_id)) - info_json = self._download_webpage(info_url, video_id) - info = json.loads(info_json)['result'] + video_id = self._match_id(url) + + info = self._download_json( + 'http://player-c.api.bambuser.com/getVideo.json?api_key=%s&vid=%s' + % (self._API_KEY, video_id), video_id)['result'] return { 'id': video_id,