I am using recording.js. The functionality is working fine but after I stop recording the red icon still appears in chrome\'s tab(near title). Please suggest what to do. So
To remove red icon after using Recorder.js:
var audioStream; var onSuccess = function(s) { ... audioStream = s; } function stopRecording() { ... audioStream.getTracks()[0].stop(); }
getTracks() returns only one element since you use only audio in your config.
I hope it will help someone.