Merge pull request #188 from jogibear9988/patch-2

Update README.md
This commit is contained in:
Malte Rosenbjerg 2021-03-10 21:12:48 +01:00 committed by GitHub
commit bad7c94b60
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -184,7 +184,7 @@ The default value (`\\FFMPEG\\bin`) can be overwritten via the `FFMpegOptions` c
```c# ```c#
public Startup() public Startup()
{ {
FFMpegOptions.Configure(new FFMpegOptions { RootDirectory = "./bin", TempDirectory = "/tmp" }); GlobalFFOptions.Configure(new FFOptions { BinaryFolder = "./bin", TemporaryFilesFolder = "/tmp" });
} }
``` ```
@ -194,8 +194,8 @@ The root and temp directory for the ffmpeg binaries can be configured via the `f
```json ```json
{ {
"RootDirectory": "./bin", "BinaryFolder": "./bin",
"TempDirectory": "/tmp" "TemporaryFilesFolder": "/tmp"
} }
``` ```