diff options
Diffstat (limited to 'hypervideo_dl/extractor/urort.py')
-rw-r--r-- | hypervideo_dl/extractor/urort.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hypervideo_dl/extractor/urort.py b/hypervideo_dl/extractor/urort.py index 8f6edab..020425f 100644 --- a/hypervideo_dl/extractor/urort.py +++ b/hypervideo_dl/extractor/urort.py @@ -44,7 +44,7 @@ class UrortIE(InfoExtractor): 'ext': f['FileType'], 'format_id': '%s-%s' % (f['FileType'], f.get('Quality', '')), 'url': 'http://p3urort.blob.core.windows.net/tracks/%s' % f['FileRef'], - 'preference': 3 if f['FileType'] == 'mp3' else 2, + 'quality': 3 if f['FileType'] == 'mp3' else 2, } for f in s['Files']] self._sort_formats(formats) e = { |