-
Hi there, I was wondering whether it was possible to force height and width on video remote tracks? Something similar to Cheers |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
@asticode Unfortunately there is nothing you can do as the receiver to force/request a certain resolution. On the client side you can configure it was Media Stream Constraints You may not even need Another thing you should check out is Simulcast! It allows you to upload 3 video streams and you pick the resolution (low, med and high) which might be helpful if you are trying to get a specific resolution. |
Beta Was this translation helpful? Give feedback.
-
First off, thanks for making me discover Github discussions, I didn't even know this was a thing, the tool seems pretty cool 👍
Is there an example that would show me how to properly set this up? |
Beta Was this translation helpful? Give feedback.
@asticode Unfortunately there is nothing you can do as the receiver to force/request a certain resolution. On the client side you can configure it was Media Stream Constraints
You may not even need
rtcp.ReceiverEstimatedMaximumBitrate
. By default you should get bandwidth probing from the Feedback Reports (Transport Wide Congestion Control Reports
) and then setting the constraints should get you what you need.Another thing you should check out is Simulcast! It allows you to upload 3 video streams and you pick the resolution (low, med and high) which might be helpful if you are trying to get a specific resolution.