What problem does this solve?
if ffmpeg is installed, stemdeck does not uses it, actually it downloads his own version, compiled for macOS 15, and I'm using macOS 13... (so it does not work)... By changing the ffmpeg binary is enough to resolve this issue, and the app works just fine.
Proposed solution
you could use a:
if [ -z "$(which ffmpeg)" ]
then
download ffmpeg from your page
fi
else
use what is on the system
fi
Alternatives considered
No response
What problem does this solve?
if ffmpeg is installed, stemdeck does not uses it, actually it downloads his own version, compiled for macOS 15, and I'm using macOS 13... (so it does not work)... By changing the ffmpeg binary is enough to resolve this issue, and the app works just fine.
Proposed solution
you could use a:
Alternatives considered
No response