How to get the latest FFmpeg binaries for Windows
Get the FFmpeg binaries
So, the great resource i am talking about is ffmpeg.zeranoe.com. The binaries are available for 32bit and 64bit operating systems containing ffplay.exe, which is basically a command line controlled video player, ffprobe.exe as an analyzer tool with a lot of greate features and of course ffmpeg.exe as the command line encoding tool. If you are just looking for the binaries to use it in your command line, you should download the static build for your operating system. If you’re developer you may decide to use the shared libraries or development versions.
Installation Instructions
- As the binaries provided by zeranoe are archived using the freely available 7-zip, you need to download and install it.
- Download the latest build of FFmpeg from ffmpeg.zeranoe.com.
- Unpack your downloaded version. You will find the binaries in the folder /bin.
That’s essentially it but i recommend to either put the path to your binaries into your System PATH variables or move the the binaries to somewhere which is already in your PATH. Of course you could also move the binaries to e.g. C:\Tools\bin and launch FFmpeg with C:\Tools\bin\ffmpeg.exe , that’s up to you.
For all you guys who are waiting for the next part of “Understanding FFmpeg”, i promise the next article will continue with that series. See you then.
以上就介绍了How to get the latest FFmpeg binaries for Windows,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。