Removes input when it's finished.
Removes an input from the array of inputs when it's 'finished'.
This commit is contained in:
parent
528317ccbc
commit
564d31654f
@ -87,6 +87,10 @@ Mixer.prototype.input = function (args) {
|
||||
sampleRate: args.sampleRate || this.sampleRate
|
||||
});
|
||||
this.inputs.push(input);
|
||||
|
||||
input.on('finish', () =>{
|
||||
this.inputs.splice(this.inputs.indexOf(input), 1);
|
||||
});
|
||||
|
||||
return input;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user