If I just send getDisplayMedia stream, the resolution is transmitted as it is.
However, when I send it using canvas.captureMedia, the resolution is transmitted at a lower quality at first and becomes larger .
Is there a way to send it at that resolution just like sending a getDisplayMedia stream?
case1 : sending the getDisplayMedia stream enter image description here
case2 : sending canvas capture MediaStream enter image description here
It might be related to the canvas size you are using. You might need to change the size of the canvas you are using. Check the size of the video you are getting, e.g. 1280 * 680 and then set a same size canvas. That way it might be same resolution.
For setting the correct canvas size checkout here: https://en.wikipedia.org/wiki/Canvas_element#Canvas_element_size_versus_drawing_surface_size
As it suggests I understand you need at least the drawing surface changed to a desirable value, proably same as your video streams video track sizes.
You can request the vdeo stream with
width
andheight
options while callinggetUserMedia
beforehand. Or at a later stage you can get tracks in your media stream, withgetTracks
orgetVideoTracks
methods. Then get settings byMediaStreamTrack.getSettings
method. And then check the video track's settingswidth
,height
, or evenaspectRatio
and much more. Then you can use the size values of your video track and apply same to the canvas element you create by setting itswidth
andheight
attributes to change its drawing surface sizes. If you want to show a smaller canvas element set those in CSS as opposed to drawing surface sizes.