node-webrtc-examples icon indicating copy to clipboard operation
node-webrtc-examples copied to clipboard

MediaStream and RTCDataChannel examples using node-webrtc

Results 25 node-webrtc-examples issues
Sort by recently updated
recently updated
newest added
trafficstars

Based on examples/record-audio-video-stream, when I run it on different network, it seems that it does not go through this listener ```js videoSink.addEventListener('frame', ({ frame: { width, height, data }}) =>...

Environment : window 10 Node : v12.14.1 when i run this project for recording it throw error when i stop video stream listen EACCES: permission denied ./1.sock i think "nat"...

help wanted
question

Hey everyone, for a project my goal was to livestream a video from a pipeline defined using gstreamer to the browser. I don't have prior experience with webrtc but the...

I do not understarnd the example, it can't work in chrome, how can i let it work

A really big thank you to the contributors of this project for a great work, the examples are straight forward and easy to follow, however is there a way to...

if i try to expose port 3000 and run the examples inside of a docker container (on my localhost for now), the remote video of all examples is always blank....

As only one stream can be maintained at a time, this change moves to just holding on to one stream and closing it before opening a new one. If we...

So i've done this on the server ``` const audioTransceiver = pc.addTransceiver("audio"); audioTransceiver.sender.replaceTrack(audioTransceiver.receiver.track); ``` while creating the pc(peerconnection) object and on the client ``` const remoteStream = new MediaStream( pc.getReceivers().map((receiver)...

Hello. So node-webrtc is a great thing that enables us to have webrtc capability on the server as well, while not relying on electron+chromium dependency as the other node approaches...

help wanted
question

How i can control maximum streaming bandwidth? I tried to apply sdp.replace method in index.js file ( node-webrtc-examples/lib/client/index.js ) but no effect..

question