mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-01-01 14:20:10 +01:00
increase maximum audio speed indication (uncompressed hd is about
700kbps)
This commit is contained in:
parent
e51dbac2c5
commit
f0b3a50c23
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue