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) {
|
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) {
|
AudioOutputProgressBar = function(el, sampleRate) {
|
||||||
|
Loading…
Reference in New Issue
Block a user