Audio Prioritization

AlanM

Member
When broadcasting audio / video on a low bandwidth connection, is there any way to prioritize the audio stream over the video stream? So in the case that the bandwidth drops, the video with drop packets, but the audio will not?
 

Max

Administrator
Staff member
Hello.
WebRTC does not allow prioritization itself. But you can decrease minimum video bitrate limit to 0 with server setting
Code:
webrtc_cc_min_bitrate=0
In this case server will not try to hold video bitrate on certain level when bandwidth drops, and video stream can become a slideshow, but audio will go on.
It works in latest build 5.1.3753.
 
Top