From a2b37cb920cf346847e556c5dbfd0965053e1ada Mon Sep 17 00:00:00 2001 From: chaitanyabd Date: Sat, 31 Jul 2021 00:05:38 +0530 Subject: [PATCH] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 9dce345..298489e 100644 --- a/README.md +++ b/README.md @@ -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