FFmpeg binary download





Even after long search I couldn't find any windows ffmpeg binary which is supporting webm (VP8) conversion in both direction, all existing used ffmpeg and was not for free you need to pay it for. Because I needed more converters I have prepared my one build which I will share with you now. Please use only for personal utilization, if you need for business purpose please ask help or create your one build.

I'm using the following configuration:
configuration: --pkg-config=pkg-config --prefix=/pergel.hu/win --enable-memalign-hack --arch=x86 --target-os=mingw32 --cross-prefix=i686-w64-mingw32- --enable-libfaac --enable-gpl --enable-nonfree --enable-runtime-cpudetect --enable-gpl --enable-version3 --enable-libopencore_amrwb --enable-libopencore_amrnb --enable-libfaac --enable-zlib --enable-avisynth --enable-static --disable-shared --extra-libs=-lfaac --enable-libx264 --enable-libmp3lame --disable-w32threads --enable-libtheora --enable-libvpx --enable-libvorbis --enable-libxvid --enable-filter=movie --enable-decoder=png --enable-encoder=png --enable-frei0r

In the next examples I will show you few possibility of converters.

.\ffmpeg.exe
-y -i input_file -vcodec libx264 -b 900k -r 25 -acodec libfaac -ab 128k -ar 44100 -ac 2 -s 320x200 output_file

-y -i input_file -vn -b 900k -r 25 -acodec libmp3lame -ab 128k -ar 44100 -ac 2 -s 320x200 output_file

-y -i input_file -vcodec flv -b 900k -r 25 -acodec libmp3lame -ab 128k -ar 44100 -ac 2 -s 320x200 output_file

-y -i input_file -vcodec libtheora -b 900k -r 25 -acodec flac -ab 128k -ar 44100 -ac 2 -s 320x200 output_file

-y -i input_file -vcodec libvpx -b 900k -r 25 -acodec libvorbis -ab 128k -ar 44100 -ac 2 -s 320x200 output_file

-y -i input_file -vcodec libx264 -b 900k -r 25 -acodec libfaac -ab 128k -ar 44100 -ac 2 -s 320x200 output_file

-y -i input_file -vcodec libxvid -b 900k -r 25 -acodec libmp3lame -ab 128k -ar 44100 -ac 2 -s 320x200 output_file

-y -i input_file -vcodec mjpeg -b 900k -r 25 -acodec libmp3lame -ab 128k -ar 44100 -ac 2 -s 320x200 output_file

-y -i input_file -vcodec mpeg4 -b 900k -r 25 -acodec libfaac -ab 128k -ar 44100 -ac 2 -s 320x200 output_file

-y -i input_file -vcodec msmpeg4 -b 900k -r 25 -acodec libmp3lame -ab 128k -ar 44100 -ac 2 -s 320x200 output_file

-y -i input_file -vcodec wmv1 -b 900k -r 25 -acodec wmav1 -ab 128k -ar 44100 -ac 2 -s 320x200 output_file

-y -i input_file -vcodec wmv2 -b 900k -r 25 -acodec wmav2 -ab 128k -ar 44100 -ac 2 -s 320x200 output_file

With Watermark:
-y -i input_file -vcodec mpeg4 -b 1050k -r 25 -acodec libfaac -ab 96k -ar 44100 -ac 2 -s 320x240 -vf "movie="powered.png" [watermark]; [in][watermark] overlay=0:0:rgb=1 [out]" output_file