MediaStreamRecorder
MediaStreamRecorder copied to clipboard
Cross browser audio/video/screen recording. It supports Chrome, Firefox, Opera and Microsoft Edge. It even works on Android browsers. It follows latest MediaRecorder API standards and provides similar...
Try it on Chrome Android and it sounds good but it doesn`t work on Chrome iOS. No way to debug. Can anyone help me with some explain? Document does not...
The description says it supports screen video recording in Android. Though I haven't tested it yet, I am curious to know if audio can also be recorded? @muaz-khan @neizerth
i try to record local stream and remote stream when two peers established a p2p connection(video chat), then upload the record-file to server ,but only remoteStream can be recorded, here's...
Is it possible to add soundtrack to video when I click "start record"? How can I achieve this? Please help. Thanks.
``` function startRecording() { try { var stream = canvas.elt.captureStream(); // frames per second mediaRecorder = new MediaStreamRecorder(stream); mediaRecorder.mimeType = format; } catch (e) { console.error('Exception while creating MediaRecorder: '...
Getting an error after making this change: `mediaRecorder.stream.stop();` to: ``` mediaRecorder.stream.getTracks().forEach(function(track) { track.stop(); }); ``` error: ``` MediaRecorder Error errorbubbles: falsecancelBubble: falsecancelable: falsecomposed: falsecurrentTarget: nulldefaultPrevented: falseerror: Restricted { }eventPhase: 0explicitOriginalTarget:...
First of all, thanks for providing this library - it is a lifesaver! The RTCMultiConnection library has silence detection, which I believe would be useful in MediaStreamRecorder. Instead of saving...