I wrote a Python program for Windows 10 which converts audio files from any supported format to .flac, and it uses FFMPEG to do the encoding.
FFMPEG is installed on my computer, so there isn't any problem when I run the program on my computer.
I used PyInstaller
to export my program in .exe, and now I want to include FFMPEG in the distribution so people don't have to download it separately to run my script.
Can I wrap/include FFMPEG into my program, and automatically install/use it when required? How?