increase maximum audio speed indication (uncompressed hd is about

700kbps)
This commit is contained in:
Jakob Ketterl 2020-08-08 22:23:34 +02:00
parent e51dbac2c5
commit f0b3a50c23

View File

@ -85,7 +85,7 @@ AudioSpeedProgressBar.prototype.getDefaultText = function() {
};
AudioSpeedProgressBar.prototype.setSpeed = function(speed) {
this.set(speed / 500000, "Audio stream [" + (speed / 1000).toFixed(0) + " kbps]", false);
this.set(speed / 1000000, "Audio stream [" + (speed / 1000).toFixed(0) + " kbps]", false);
};
AudioOutputProgressBar = function(el, sampleRate) {