How do I install ffmpeg on Windows 7

I'm using Windows 7 and Zend server for my PHP.I have fed up completely searching and trying every methods of installation found on internet.

Luckily, I installed it well on my Ubuntu machine at my home.

How do I install ffmpeg in Windows 7?


Solution 1:

I came across this tutorial, which is a good starting guide. Here you can get the latest builds.

This page lists more guides.

Also have a look at the K-Lite Codec Pack.

In general, videohelp.com is a good resource for setting up video stuff.

Solution 2:

Download either the latest 32-bit build or 64-bit build and extract the contents of the bin folder (ffmpeg.exe, ffplay.exe, ffprobe.exe) to a location on your system. You may want to make the path short for simplicity (e.g. C:\ffmpeg).

Optionally, add the path to ffmpeg.exe to your system path so you can run it without the fully qualified path.

Then you can call it similarly to how you would on linux in PHP with exec() or system().

See also the examples posted by Ahmed.