On Sun, Feb 02, 2025 at 17:25:59 +0100, KoSza wrote: > Another strange thing: both systems have 7.0.2-1 installed not 4.1.9…
If it does, then you should first find that version of ffmpeg. The one you are executing is clearly 4.1.9. $ which -a ffmpeg assuming your `which` supports this. Alternatively: $ echo $PATH | tr : '\n' | while read p; do if [ -f "$p/ffmpeg" ]; then ls -l "$p/ffmpeg"; fi; done If you only get the one executable, try searching the complete file system: $ find / -type f -name ffmpeg Once you have found it, either try it, or show us $ /path/to/ffmpeg -h Cheers, Moritz _______________________________________________ ffmpeg-user mailing list ffmpeg-user@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".