MediaStreamRecorder icon indicating copy to clipboard operation
MediaStreamRecorder copied to clipboard

multiStreamRecorder.ondataavailable not firing in Electron

Open odegraciajr opened this issue 9 years ago • 1 comments

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

odegraciajr avatar Nov 24 '16 16:11 odegraciajr

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.

Ajaay avatar Jan 27 '17 15:01 Ajaay