logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: 6a1b20de2a562f76501ae96721957f43804d8e61
parent 3c864e930dd7533b404d03872d078e038883ac3d
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Fri, 12 Dec 2014 20:37:28 +0100

[urort] Modernize

Diffstat:

Myoutube_dl/extractor/urort.py4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/youtube_dl/extractor/urort.py b/youtube_dl/extractor/urort.py @@ -33,13 +33,11 @@ class UrortIE(InfoExtractor): } def _real_extract(self, url): - mobj = re.match(self._VALID_URL, url) - playlist_id = mobj.group('id') + playlist_id = self._match_id(url) fstr = compat_urllib_parse.quote("InternalBandUrl eq '%s'" % playlist_id) json_url = 'http://urort.p3.no/breeze/urort/TrackDtos?$filter=' + fstr songs = self._download_json(json_url, playlist_id) - print(songs[0]) entries = [{ 'id': '%d-%s' % (s['BandId'], s['$id']),