Static builds of ffmpeg for Python
From pip:
pip install ffmpeg-binaries
import ffmpeg
# Initialize module (only if no binaries found)
ffmpeg.init()
# Call ffmpeg directly
ffmpeg.run_as_ffmpeg("-h")
# Use the binaries path in other modules
other_module.add_ffmpeg(ffmpeg.FFMPEG_PATH)
# Add directly to path
ffmpeg.add_to_path()