Skip to content

Commit

Permalink
Add ingress high motion presets
Browse files Browse the repository at this point in the history
  • Loading branch information
biglittlebigben committed Sep 13, 2023
1 parent 47d330e commit 3c79e40
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions livekit_ingress.proto
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,18 @@ enum IngressAudioEncodingPreset {
}

enum IngressVideoEncodingPreset {
H264_720P_30FPS_3_LAYERS = 0; // 1280x720, 30fps, 1700kbps main layer, 3 layers total
H264_1080P_30FPS_3_LAYERS = 1; // 1980x1080, 30fps, 3000kbps main layer, 3 layers total
H264_540P_25FPS_2_LAYERS = 2; // 960x540, 25fps, 600kbps main layer, 2 layers total
H264_720P_30FPS_1_LAYER = 3; // 1280x720, 30fps, 1700kbps, no simulcast
H264_1080P_30FPS_1_LAYER = 4; // 1980x1080, 30fps, 3000kbps, no simulcast
H264_720P_30FPS_3_LAYERS = 0; // 1280x720, 30fps, 1700kbps main layer, 3 layers total
H264_1080P_30FPS_3_LAYERS = 1; // 1980x1080, 30fps, 3000kbps main layer, 3 layers total
H264_540P_25FPS_2_LAYERS = 2; // 960x540, 25fps, 600kbps main layer, 2 layers total
H264_720P_30FPS_1_LAYER = 3; // 1280x720, 30fps, 1700kbps, no simulcast
H264_1080P_30FPS_1_LAYER = 4; // 1980x1080, 30fps, 3000kbps, no simulcast
H264_720P_30FPS_3_LAYERS_HIGH_MOTION = 5; // 1280x720, 30fps, 2200kbps main layer, 3 layers total, higher bitrate for high motion, harder to encode content
H264_1080P_30FPS_3_LAYERS_HIGH_MOTION = 6; // 1980x1080, 30fps, 3900kbps main layer, 3 layers total, higher bitrate for high motion, harder to encode content
H264_540P_25FPS_2_LAYERS_HIGH_MOTION = 7; // 960x540, 25fps, 780kbps main layer, 2 layers total, higher bitrate for high motion, harder to encode content
H264_720P_30FPS_1_LAYER_HIGH_MOTION = 8; // 1280x720, 30fps, 2200kbps, no simulcast, higher bitrate for high motion, harder to encode content
H264_1080P_30FPS_1_LAYER_HIGH_MOTION = 9; // 1980x1080, 30fps, 3900kbps, no simulcast, higher bitrate for high motion, harder to encode content


}

message IngressAudioEncodingOptions {
Expand Down

0 comments on commit 3c79e40

Please sign in to comment.