Update README.md

Former-commit-id: a2b37cb920
This commit is contained in:
chaitanyabd 2021-07-31 00:05:38 +05:30 committed by GitHub
parent 2601dc3a83
commit 3951eda615

View file

@ -186,6 +186,8 @@ The default value of an empty string (expecting ffmpeg to be found through PATH)
GlobalFFOptions.Configure(new FFOptions { BinaryFolder = "./bin", TemporaryFilesFolder = "/tmp" });
// or
GlobalFFOptions.Configure(options => options.BinaryFolder = "./bin");
// on some systems the absolute path may be required, in which case
GlobalFFOptions.Configure(new FFOptions { BinaryFolder = Server.MapPath("./bin"), TemporaryFilesFolder = Server.MapPath("/tmp") });
// or individual, per-run options
await FFMpegArguments