mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
parent
5f854cd2f4
commit
64e31eb578
1 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue