From d16ec97f7b03d45ea8433ce30d0fcae56e3bee7e Mon Sep 17 00:00:00 2001 From: jp9000 Date: Fri, 5 Jun 2015 08:57:01 -0700 Subject: [PATCH] UI: Change default simple audio bitrate to 160 The audio bitrate required is insignificant relative to the video bitrate, and due to the fact that it's possible that a lower-quality encoder may be in use (such as FFmpeg's AAC encoder), setting the default to 160 is really more ideal to reducee any potential quality loss. --- obs/window-basic-main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obs/window-basic-main.cpp b/obs/window-basic-main.cpp index 2f8fdb718..3bcfe1779 100644 --- a/obs/window-basic-main.cpp +++ b/obs/window-basic-main.cpp @@ -458,7 +458,7 @@ bool OBSBasic::InitBasicConfigDefaults() GetDefaultVideoSavePath().c_str()); config_set_default_uint (basicConfig, "SimpleOutput", "VBitrate", 2500); - config_set_default_uint (basicConfig, "SimpleOutput", "ABitrate", 128); + config_set_default_uint (basicConfig, "SimpleOutput", "ABitrate", 160); config_set_default_bool (basicConfig, "SimpleOutput", "Reconnect", true); config_set_default_uint (basicConfig, "SimpleOutput", "RetryDelay",