mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 00:24:14 +01:00
Update README.md
This commit is contained in:
parent
607bd1837f
commit
a76ec851c8
1 changed files with 4 additions and 4 deletions
|
@ -196,12 +196,12 @@ The root and temp directory for the ffmpeg binaries can be configured via the `f
|
||||||
```
|
```
|
||||||
|
|
||||||
### Supporting both 32 and 64 bit processes
|
### Supporting both 32 and 64 bit processes
|
||||||
If you wish to support multiple client processor architectures, you can do so by creating a folder `x64` and `x86` in the `root` directory.
|
If you wish to support multiple client processor architectures, you can do so by creating two folders, `x64` and `x86`, in the `BinaryFolder` directory.
|
||||||
Both folders should contain the binaries (`ffmpeg.exe` and `ffprobe.exe`) for build for the respective architectures.
|
Both folders should contain the binaries (`ffmpeg.exe` and `ffprobe.exe`) built for the respective architectures.
|
||||||
|
|
||||||
By doing so, the library will attempt to use either `/root/{ARCH}/(ffmpeg|ffprobe).exe`.
|
By doing so, the library will attempt to use either `/{BinaryFolder}/{ARCH}/(ffmpeg|ffprobe).exe`.
|
||||||
|
|
||||||
If these folders are not defined, it will try to find the binaries in `/root/(ffmpeg|ffprobe.exe)`.
|
If these folders are not defined, it will try to find the binaries in `/{BinaryFolder}/(ffmpeg|ffprobe.exe)`.
|
||||||
|
|
||||||
(`.exe` is only appended on Windows)
|
(`.exe` is only appended on Windows)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue