MediaStreamRecorder
MediaStreamRecorder copied to clipboard
multiStreamRecorder.ondataavailable not firing in Electron
i'm testing the MultiStreamRecorder.html sample on electron and it's not firing the multiStreamRecorder.ondataavailable event.
multiStreamRecorder.ondataavailable = function(blobs) {
appendLink(blobs.audio);
appendLink(blobs.video);
};
Did you manage to resolve this? I have a setup where I start up two separate recorders, one for webcam and one for screen capture and for some reason the webcam recorder ondataavailable event does not fire, but the screen one does.
The same code works absolutely fine directly in chrome.