diff --git a/ShareX.ScreenCaptureLib/Screencast/ScreencastOptions.cs b/ShareX.ScreenCaptureLib/Screencast/ScreencastOptions.cs index 7d9565f9c..044013b3b 100644 --- a/ShareX.ScreenCaptureLib/Screencast/ScreencastOptions.cs +++ b/ShareX.ScreenCaptureLib/Screencast/ScreencastOptions.cs @@ -89,7 +89,8 @@ public string GetFFmpegArgs(bool isCustom = false) } StringBuilder args = new StringBuilder(); - args.Append("-rtbufsize 150M "); // default real time buffer size was 3041280 (3M) + args.Append("-hide_banner "); // All FFmpeg tools will normally show a copyright notice, build options and library versions. This option can be used to suppress printing this information. + args.Append("-rtbufsize 150M "); // Default real time buffer size is 3041280 (3M) string fps;