|
@@ -50,10 +50,11 @@ def download(item, type='GET', parameters=None, headers=None, cookies=None, stre
|
|
|
|
|
|
|
|
console.output('Bitrate: {0}kbps'.format(int(item.bitrate)))
|
|
console.output('Bitrate: {0}kbps'.format(int(item.bitrate)))
|
|
|
|
|
|
|
|
- ans = console.ask_input('Continue downloading? [y/n]')
|
|
|
|
|
|
|
+ if int(item.bitrate) < Settings.MinQuality:
|
|
|
|
|
+ ans = console.ask_input('Continue downloading? [y/n]')
|
|
|
|
|
|
|
|
- if ans != 'y':
|
|
|
|
|
- return
|
|
|
|
|
|
|
+ if ans != 'y':
|
|
|
|
|
+ return
|
|
|
|
|
|
|
|
savefileprogress(name, full_name, file, item)
|
|
savefileprogress(name, full_name, file, item)
|
|
|
|
|
|