Merge pull request #1 from notthetup/master

Removes input when it's finished.
This commit is contained in:
Xéfir Destiny 2016-08-06 18:25:22 +02:00 committed by GitHub
commit 46a25d4dd5
1 changed files with 4 additions and 0 deletions

View File

@ -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;
};