react-audio-recorder icon indicating copy to clipboard operation
react-audio-recorder copied to clipboard

Audio Recording not working in Mozilla

Open sajjanbalar opened this issue 6 years ago • 1 comments

Hi,

It seems that the navigator.getUserMedia function is not safe to use without prefix for mozilla. Could you change the code to use this:

navigator.getUserMedia = ( navigator.getUserMedia ||
                     navigator.webkitGetUserMedia ||
                     navigator.mozGetUserMedia ||
                     navigator.msGetUserMedia);

sajjanbalar avatar Oct 10 '18 08:10 sajjanbalar

Had the same issue.

jeremywrnr avatar Mar 08 '19 18:03 jeremywrnr