How To Check My Current Version of FFMPEG

19

2

I have FFMPEG installed on 2 different servers. On one of the servers, i run into an issue every time i try to convert m4v files where ffmpeg just processes the file indefinitely. When I take the same source file and try to run it on the other server it seems to work just fine. Both servers are running the same version of GNU/Linux. Some one suggested i check to see if the same version of ffmpeg is installed on the servers, so my question to you all is, "how do i check my ffmpeg version?"

Thanks!

aamiri

Posted 2012-04-02T16:40:24.637

Reputation: 583

3This is a place to ask things, but it would help you greatly in the future if you became comfortable with e.g. man ffmpeg, or in this case even just ffmpeg, which informs you to run ffmpeg -h for more help. Also a package manager could give you the answer. That was for the terminal (well, the package manager might very well be GUI based), and I'm certain that the man pages are available in some graphical way as well if one is not comfortable with the terminal. Googling on "ffmpeg version" also gives a first-page answer. I'm not trying to be snarky, but "teach a man to fish", etc. – Daniel Andersson – 2012-04-02T17:58:22.310

Answers

34

Call it with the right command line flag:

ffmpeg -version

For a full list of the underlying libraries, just call ffmpeg without any option:

ffmpeg

akira

Posted 2012-04-02T16:40:24.637

Reputation: 52 754

1This does not work in ubuntu 14.04 as I am using ffmpeg libraries but there is no ffmpeg application. – kkron – 2014-09-27T01:00:11.510

the question is about the ffmpeg-binary, not the libav*-header or -lib.so files. – akira – 2014-09-27T05:48:39.637

@kkron in ubuntu 14.04 there is no ffmpg, as it was replaced by avconv so you should do avconv -version – Ciprian Tomoiagă – 2016-11-22T14:59:25.957