Added -hide_banner to FFmpeg args

This commit is contained in:
Jaex 2021-11-03 04:07:03 +03:00
parent d16ff854c8
commit 4dd7fd0a10

View file

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