I use video.srcObject = mediaStream; // MediaStream object
to feed a <video>
tag. (Same as this demo: https://webrtc.github.io/samples/src/content/capture/video-video/)
The video is 60 FPS however from chrome://webrtc-internals
graph, it shows the video FPS sent/receive is constantly at 30FPS. Is this set anywhere that i can change?
FYI - I'm not using getUserMedia()
, I'm doing exactly the same as the demo -- streaming from a <video>
to another <video>
using peer-to-peer connection with WebRTC.