Android/IOS SDK manage bitrate for the stream

Denis Vasiliev

New Member
Hello,

Is it possible to control the stream's bitrate using android/ios SDK?

According to the documentation, the settings webrtc_cc_min_bitrate/webrtc_cc_max_bitrate are for the browser only.

Our main problem is sometimes we have inferior stream quality and we would like to see if we can control it (low frame rate and low bitrate).

ps. As I understand this article "Channel quality indicator for server WebRTC over TCP" is only for WebSDK(browser), is it?
 

Max

Administrator
Staff member
Hello

Please check out this doc

Server

Global server-side settings should work either for Android, iOS, and Web SDK
webrtc_sdp_min_bitrate_bps=3000000
webrtc_sdp_max_bitrate_bps=7000000

Android SDK

How to set bitrate (sample MediaDevices)

iOS SDK

How to set bitrate (sample MediaDevices)

Android SDK - Channel quality control

 
Top