Update: Solved/merged see commit
Shotcut snap comes with its own melt/ffmpeg/ffprobe/etc binaries, I’d like these to become available as a global bash command to the whole system instead of only snap shotcut gui for ease in testing a current/different melt/ffmpeg version. For example:
$ shotcut #runs shotcut gui version which is already working
$ shotcut.melt #runs the melt version shipped with shotcut snap
$ shotcut.ffmpeg #runs the ffmpeg version shipped with shotcut snap
I think its not that hard to add, however I don’t know if others would like this feature?
shotcut/snap/snapcraft.yaml
…
grade: stable
confinement: classic
apps:
shotcut:
command: bin/desktop-launch $SNAP/Shotcut.app/shotcut
+ melt:
+ command: $SNAP/Shotcut.app/bin/melt
+ ffmpeg:
+ command: /snap/shotcut/current/Shotcut.app/bin/ffmpeg
parts:
shotcut:
...