Getting FFmpeg on windows
All the guides to getting ffmpeg working on windows seem to be extremely outdated; so here is a quick howto:
- Download mingw
- Install mingw with MSYS option; it will download and setup in C:\MinGW
- Get the mingw coreutils extra package (can be found from here); current version
- Install the coreutils extras package by un-7zipping and un-tarring it to C:\MinGW\msys\1.0\bin
- Download yasm; save it as C:\MinGW\msys\1.0\bin\yasm.exe
- Download and extract ffmpeg source (I used revision 647ec6f)
- Edit your C:\MinGW\msys\1.0\etc\fstab file to add the location of your ffmpeg source
- Open MinGW shell (it should be in your start menu)
- change to the directory you extract ffmpeg (going via the alias you added in fstab)
- ./configure
- make