diff options
Diffstat (limited to 'hypervideo_dl/extractor/bpb.py')
-rw-r--r-- | hypervideo_dl/extractor/bpb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hypervideo_dl/extractor/bpb.py b/hypervideo_dl/extractor/bpb.py index 0783353..8f6ef3c 100644 --- a/hypervideo_dl/extractor/bpb.py +++ b/hypervideo_dl/extractor/bpb.py @@ -47,7 +47,7 @@ class BpbIE(InfoExtractor): quality = 'high' if '_high' in video_url else 'low' formats.append({ 'url': video_url, - 'preference': 10 if quality == 'high' else 0, + 'quality': 10 if quality == 'high' else 0, 'format_note': quality, 'format_id': '%s-%s' % (quality, determine_ext(video_url)), }) |