Missing FFmpeg?
If you get the error:
Failed to download FFmpeg or ZSTD
Manually download both and place them in:
Windows:
%APPDATA%\Nix\Resources\ffmpeg\ and \zstd\
Linux:
~/.config/Nix/Resources/
macOS:
~/Library/Application Support/Nix/Resources/
You can download the exact executable files you need using the links below. If you prefer, you may also visit the official websites, but note that you'll need to locate the correct versions on your own:
FFmpeg Downloads:
ZSTD Downloads:
Manual FFmpeg Decompression Using ZSTD
If after placing these files you still see the error:
FFmpeg decompression failed, voice commands disabled
You will need to manually decompress the FFmpeg file using the ZSTD executable.
Step-by-step instructions:
Make sure the ZSTD file is in the same folder as your ffmpeg_uncompressed.
Open your terminal or command prompt.
Navigate to the folder where both files are located, for example:
cd Nix\Resources\ffmpeg\
Run this command to decompress the ffmpeg file:
zstd -d ffmpeg_compressed_<version> -o ffmpeg.exe
Replace
<version>
to correctly reflect the file name and extension if on windows.Use
ffmpeg
instead offfmpeg.exe
on Linux/macOS.This command decompresses the archive and outputs the usable FFmpeg executable in the same folder.
(Linux/macOS only) Make the FFmpeg file executable:
chmod +x ffmpeg
Restart the app — it should now detect FFmpeg properly.
Last updated