muaz-khan / RecordRTC

RecordRTC is WebRTC JavaScript library for audio/video as well as screen activity recording. It supports Chrome, Firefox, Opera, Android, and Microsoft Edge. Platforms: Linux, Mac and Windows.
https://www.webrtc-experiment.com/RecordRTC/
MIT License
6.49k stars 1.75k forks source link

Not able to record audio along with video using RecordRTC #743

Open ayazpathan opened 3 years ago

ayazpathan commented 3 years ago

Hi

I have been trying recording audio plus video using RecordRTC but could not

My code is here

                      this.state.recorder = RecordRTC(screen, {
                        type: "video",
                      });

                      this.state.recorder.startRecording();
                      console.log("SCREEN recording started");

                      // release screen on stopRecording
                      this.state.recorder.screen = screen;