Skip to main content
Android
iOS
macOS
Web
Windows
Electron
Flutter
React Native
React JS
Unity
Unreal Engine
Unreal (Blueprint)

Configure video encoding

Customer satisfaction with your Video Calling integrated app depends on the quality of video and audio it provides. The sharpness, smoothness, and overall quality of the video is directly linked to the frame rate, bitrate, and other video encoder settings. Choosing improper settings can result in poor video quality. Conversely, if the settings are too demanding, the available bandwidth quickly gets choked, leading to a suboptimal experience for your users.

This page guides you on configuring the video encoder settings to ensure optimal video quality in your Interactive Live Streaming app.

Understand the tech

In Video SDK you can set the video dimensions, framerate, bitrate, orientation mode, and mirror mode by specifying a video profile. You can also set the degradation preference to specify how video quality is degraded under suboptimal network conditions.

The recommended video settings vary by use-case. For example, in a one-to-one online class, the video windows of the teacher and student are both large, which calls for higher resolution, frame rate, and bitrate. However, in a one-to-many online class, the video windows are smaller. You can set lower resolution, frame rate, and bitrate to accommodate bandwidth limitations.

Use the following as a guide when configuring video settings for these use-cases:

  • One-to-one video call:

    • Resolution: 320 x 240; Frame rate: 15 fps; Bitrate: 200 Kbps.
    • Resolution: 640 x 360; Frame rate: 15 fps; Bitrate: 400 Kbps.
  • One-to-many video call:

    • Resolution: 160 x 120; Frame rate: 15 fps; Bitrate: 65 Kbps.
    • Resolution: 320 x 180; Frame rate: 15 fps; Bitrate: 140 Kbps.
    • Resolution: 320 x 240; Frame rate: 15 fps; Bitrate: 200 Kbps.

Prerequisites

Ensure that you have implemented the SDK quickstart in your project.

Implement video encoder configuration

Video SDK provides two methods to set video properties:

  1. Setting video properties when creating the video track:

    • When you call AgoraRTC.createCameraVideoTrack to create a camera video track, modify the encoderConfig parameter to use SDK preset values or custom a configuration.
    • When you call AgoraRTC.createScreenVideoTrack to create a screen sharing video track, modify the encoderConfig parameter to use SDK preset values or a custom configuration.
    • When you call AgoraRTC.createCustomVideoTrack to create a custom video track, set the bitrate by modifying the bitrateMin and bitrateMax parameters. Since v4.17.1, resolution and frame rate can also be set using the width, height, and frameRate parameters.
  2. Dynamically adjust video track properties after creation:

    This feature is supported both before and after publishing.

    • For camera video tracks, dynamically adjust video properties using CameraVideoTrack.setEncoderConfiguration.
    • Since v4.17.1, you can also dynamically adjust video properties of screen sharing video tracks and custom video tracks using LocalVideoTrack.setEncoderConfiguration.

To implement video encoder settings in your app, take the following steps:

  1. Create a track using preset video encoding properties

    AgoraRTC.createCameraVideoTrack({
    encoderConfig: "720p_1",
    }).then(localVideoTrack => { /** ... **/ });
    Copy
  2. Customize video encoding properties when creating a track

    AgoraRTC.createCameraVideoTrack({
    encoderConfig: {
    width: 640,
    // Supports specifying a range and reference value, refer to the relevant API documentation for specific configurations.
    height: { ideal: 480, min: 400, max: 500 },
    frameRate: 15,
    bitrateMin: 600, bitrateMax: 1000,
    },
    }).then(localVideoTrack => {/** ... **/ });
    Copy
  3. Dynamically adjust video encoding properties after creation

    CameraVideoTrack.setEncoderConfiguration("480p_1").then(() => { /** ... **/ })
    Copy
  4. Dynamically adjust the custom video track encoding properties after creation

    CameraVideoTrack.setEncoderConfiguration({ width: 1280, height: 720 }).then(() => { /** ... **/ })
    Copy

Reference

This section contains content that completes the information on this page, or points you to documentation that explains other aspects to this product.

Video profiles table

The following table lists the Web SDK preset video profiles and the corresponding parameters. Choose a preset profile or refer to the table to customize your settings.

Video ProfileResolution (Width × Height)Frame rate (fps)Bitrate (Kbps)
120p160 × 1201565
120p_1160 × 1201565
120p_3120 × 1201550
180p320 × 18015140
180p_1320 × 18015140
180p_3180 × 18015100
180p_4240 × 18015120
240p320 × 24015200
240p_1320 × 24015200
240p_3240 × 24015140
240p_4424 × 24015220
360p640 × 36015400
360p_1640 × 36015400
360p_3360 × 36015260
360p_4640 × 36030600
360p_6360 × 36030400
360p_7480 × 36015320
360p_8480 × 36030490
360p_9640 × 36015800
360p_10640 × 36024800
360p_11640 × 360241000
480p640 × 48015500
480p_1640 × 48015500
480p_2640 × 480301000
480p_3480 × 48015400
480p_4640 × 48030750
480p_6480 × 48030600
480p_8848 × 48015610
480p_9848 × 48030930
480p_10640 × 48010400
720p1280 × 720151130
720p_11280 × 720151130
720p_21280 × 720302000
720p_31280 × 720301710
720p_auto*1280 × 720303000
720p_5960 × 72015910
720p_6960 × 720301380
1080p1920 × 1080152080
1080p_11920 × 1080152080
1080p_21920 × 1080303000
1080p_31920 × 1080303150
1080p_51920 × 1080604780

* The 720p_auto preset profile is only recommended for Safari to ensure that the encoding resolution is dynamically adjusted. See release notes for details.

For further details, see VideoEncoderConfigurationPreset.

Sample project

For a working example, see Adjust video profile.

Interactive Live Streaming