Update README.md

This commit is contained in:
Jochen Kühner 2021-03-10 07:15:36 +01:00 committed by GitHub
parent 9e0230917d
commit 928ef40f21
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"
} }
``` ```