diff options
Diffstat (limited to 'hypervideo_dl/extractor/beatport.py')
-rw-r--r-- | hypervideo_dl/extractor/beatport.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/hypervideo_dl/extractor/beatport.py b/hypervideo_dl/extractor/beatport.py index e607094..e1cf8b4 100644 --- a/hypervideo_dl/extractor/beatport.py +++ b/hypervideo_dl/extractor/beatport.py @@ -40,7 +40,7 @@ class BeatportIE(InfoExtractor): }] def _real_extract(self, url): - mobj = re.match(self._VALID_URL, url) + mobj = self._match_valid_url(url) track_id = mobj.group('id') display_id = mobj.group('display_id') @@ -69,12 +69,10 @@ class BeatportIE(InfoExtractor): 'vcodec': 'none', } if ext == 'mp3': - fmt['preference'] = 0 fmt['acodec'] = 'mp3' fmt['abr'] = 96 fmt['asr'] = 44100 elif ext == 'mp4': - fmt['preference'] = 1 fmt['acodec'] = 'aac' fmt['abr'] = 96 fmt['asr'] = 44100 |