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.
master
jp9000 2015-08-14 14:10:23 -07:00
parent d53cef47ac
commit 61d86d938a
2 changed files with 1 additions and 9 deletions

View File

@ -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,

View File

@ -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)) {