Hi,
Is this correct in order to set the maximum outgoing bitrate of a non-simulcast media stream? WebRTC internals says yes, just to make sure. I just have seen this kind of “encoding” setup in simulcast scenarios so far in the available samples:
params.encodings = [
{ rid: "r0", active: true, maxBitrate: 100000 },
]
Second part of the question: Is there any way to prefer a particular codec in publisher connections? I would know how to do this with “pure” WebRTC, but I’m not quite sure how to do it with mediasoup-client.
Basically it is just about changing the order of the offered codecs in the OFFER SDP in order to achieve a preference for e.g. H.264 over VP8 or vice versa.
TIA