- From: Philipp Hancke via GitHub <sysbot+gh@w3.org>
- Date: Mon, 10 Jan 2022 08:06:39 +0000
- To: public-webrtc@w3.org
fippo has just created a new issue for https://github.com/w3c/webrtc-svc: == how to specify L3T3? == ``` pc.addTransceiver(stream.getVideoTracks()[0], { direction: 'sendonly', sendEncodings: [ {rid: 'q', scaleResolutionDownBy: 4.0, scalabilityMode: 'L3T3'} {rid: 'h', scaleResolutionDownBy: 2.0, scalabilityMode: 'L3T3'}, {rid: 'f', scalabilityMode: 'L3T3'}, ] }); ``` seems like an odd way to do it since each spatial layer is defined by a separate sendencoding. One can not specify a single encoding either pc.addTransceiver(stream.getVideoTracks()[0], { direction: 'sendonly', sendEncodings: [ {scalabilityMode: 'L3T3'} ] }); ``` since that looses the ability to control the downscaling factor (which might be tolerable) and the rid. Please view or discuss this issue at https://github.com/w3c/webrtc-svc/issues/61 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Monday, 10 January 2022 08:06:41 UTC