[FFmpeg-user] convert mkv to mp4
Moritz Barsnick
barsnick at gmx.net
Sun Feb 2 20:46:36 EET 2025
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
More information about the ffmpeg-user
mailing list