MultiStreamsMixer
MultiStreamsMixer copied to clipboard
MultiStreamsMixer is a JavaScript library that allows you pass multiple streams (e.g. screen+camera or multiple-cameras) and get single stream.
Hi forks, I have an issue when try to init a new MultiStreamsMixer with an empty stream array at constructor. Then I append some streams via "appendStreams" function with the...
Is there any way to add a web page as layer in the Video Stream
The Record [Camera+Screen](https://www.webrtc-experiment.com/RecordRTC/simple-demos/video-plus-screen-recording.html) is not working on Firefox: "Unable to capture your screen. Please check console logs. InvalidStateError: getDisplayMedia must be called from a user gesture handler." On Chromium, it...
this.connection.socketURL = socket_url.length > 0 ? socket_url[0].value : ''; this.connection.socketMessageEvent = 'video-broadcast-demo'; this.connection.session = { audio: true, video: true, oneway: this.isPrivate == 1? false : true }; this.connection.sdpConstraints.mandatory = {...
Hey, when u mix screen and camera the chrome browser goes insane on using memory so it just dies. Same happens on ur demos as well.
I am using webrtc and I haven't been able to successfully mix the peer streams and receive ondataavailable events? In webrtc, when a new stream is added if ( audioMixer...
In chromium、chrome、edge(chromium) Enabling browser Hardware Acceleration option causes mixed stream video very very lag ex ``` const mixer = new MultiStreamsMixer([screenStream, cameraStream]); const mediastream = mixer.getMixedStream(); // if handle stream...
I've been using a slightly modified version of this in my own project which has a lot of streams being mixed together/ dropped over periods of time. This causes issues...
Will there be any way to modify or push a new stream to the recorder? and what would happen inside a blob?
Hi, when i mix two audio streams and recording with `MediaRecorder` after stop recording no blob file generated. but in video every thing is nice. ``` const audioMixer = new...