From a76ec851c8305f67257b96b2874abaecaf4c7895 Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Thu, 12 Aug 2021 23:06:07 +0200 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d58e3fe..56bc001 100644 --- a/README.md +++ b/README.md @@ -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 -If you wish to support multiple client processor architectures, you can do so by creating a folder `x64` and `x86` in the `root` directory. -Both folders should contain the binaries (`ffmpeg.exe` and `ffprobe.exe`) for build for the respective architectures. +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`) 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)