Browse Source

UI: Adjust simple output mode preset NVENC bitrates

The bitrates were a bit higher than they probably should be.
jp9000 9 years ago
parent
commit
068b9904ea
1 changed files with 1 additions and 1 deletions
  1. 1 1
      obs/window-basic-main-outputs.cpp

+ 1 - 1
obs/window-basic-main-outputs.cpp

@@ -487,7 +487,7 @@ void SimpleOutput::UpdateRecordingSettings()
 		UpdateRecordingSettings_qsv11(crf);
 
 	} else if (videoEncoder == SIMPLE_ENCODER_NVENC) {
-		UpdateRecordingSettings_nvenc(ultra_hq ? 90000 : 50000);
+		UpdateRecordingSettings_nvenc(ultra_hq ? 90000 : 22000);
 	}
 }