I have an electron app built and packaged for macOS in a .app
file. The app requires ffmpeg to be installed on the end-user's computer to be used.
Currently, I've had to manually install ffmpeg on each end-user's computer to run the app.
I want to distribute the app online with an easy installer for both ffmpeg and the app. I've seen .dmg
files which allows you to drag the .app
into the applications folder easily, but the ffmpeg dependency is still absent in the installation process.
How can I install ffmpeg and the app together on a mac?
Perhaps including the ffmpeg build in the .app
content is a solution as well.
This may not be possible though because a relevant question mentions there are only abstractions of the ffmpeg CLI instead of something that can directly use ffmpeg.