提交 61d86d93 编写于 作者: J jp9000

rtmp-services: Always use CBR for all services

Services almost always recommend this be enabled, and I generally want
to make configuration easier for users; with CBR they don't have to set
things like the CRF value.
上级 d53cef47
......@@ -109,7 +109,6 @@
],
"recommended": {
"keyint": 2,
"cbr": true,
"profile": "main",
"max video bitrate": 3500,
"max audio bitrate": 160
......@@ -129,7 +128,6 @@
],
"recommended": {
"keyint": 4,
"cbr": true,
"profile": "main",
"max video bitrate": 9000,
"max audio bitrate": 160
......@@ -209,7 +207,6 @@
],
"recommended": {
"keyint": 2,
"cbr": true,
"profile": "main",
"max video bitrate": 3500,
"max audio bitrate": 160
......@@ -311,7 +308,6 @@
}
],
"recommended": {
"cbr": true,
"keyint": 2,
"max audio bitrate": 160,
"max video bitrate": 3500,
......
......@@ -234,11 +234,7 @@ static void apply_video_encoder_settings(obs_data_t *settings,
obs_data_set_int(settings, "keyint_sec", keyint);
}
item = json_object_get(recommended, "cbr");
if (item && json_is_boolean(item)) {
bool cbr = json_is_true(item);
obs_data_set_bool(settings, "cbr", cbr);
}
obs_data_set_bool(settings, "cbr", true);
item = json_object_get(recommended, "profile");
if (item && json_is_string(item)) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册