I'm using the video conference implementation source code using webrtc and nodejs.
I'm sending a video from a server to a client. I need to compute the PSNR
of the received video to compute the objective visual quality.
My concerns are:
Record Audio and Video with MediaRecorder
I solved the problem using MediaRecorder. Using MediaRecorder API, you can start and stop the recorder, and collect the stream data as they arrive.
The MediaStream can be from:
It support the following MIME types:
The following demo demonstrates that and the code is available as well
I still have to solve the second concern!! Any idea for mapping the local and remote video frames?