Install Ffmpeg Win 10 64

Posted on
  1. Linux Install Ffmpeg
  2. Install Ffmpeg Win 10 64 Bit
  3. Reinstall Win 10 64 Bit

FFmpeg 4.1.3 is available to all software users as a free download for Windows 10 PCs but also without a hitch on Windows 7 and Windows 8. Compatibility with this software may vary, but will generally run fine under Microsoft Windows 10, Windows 8, Windows 8.1, Windows 7, Windows Vista and Windows XP on either a 32-bit or 64-bit setup.

The real answer is probably 'no', but still, just to double check.Has anyone ever been able to build ffmpeg x64 on Windows (VS2013 or VS2015)? I know it is not possible with publicly available sources without heavy modifications. However, if somebody did it and if he is willing to share a few tips..

Ffmpeg for windows 10

Edit:It is interesting how most of the required x64 tools for running the 'configure' are distributed without dependencies and it is impossible to get them anywhere. Looks like a professional trolling.

Edit2:There are thousands of errors like this:

features.h is missing as many other header files. Is there a fix for that, or switching to Linux is the only option?

moose
moosemoose
3241 gold badge7 silver badges20 bronze badges

4 Answers

Install

No, it cannot be done. MS compiler doesn't support #include_next. Plus, many other problems.. You need MinGW.

Malik UracMalik Urac

Assuming with x64 you mean the standard 64-bit version, yes it is possible. See the fate page for all tested builds of FFmpeg, there's various 32- and 64-bit versions of Visual Studio in that list, including VS2013 and VS2015 64-bit. Search for 'Microsoft (R) C/C++ Optimizing Compiler Version 18.00.40629 for x64' (or '19.00.24215.1') or 'VS2013'/'VS2015', all the way at the bottom. For exact build options, see here for 2013 or here for 2015. The important part is to open a Windows shell with the 64-bit commandline build tools in your $PATH and open a msys shell from there, and then run configure using the --arch=x86_64 --target-os=win64 --toolchain=msvc options. For more detail, see the MSVC compilation wiki page.

Win 10 iso
Ronald S. BultjeRonald S. Bultje

I used to compile ffmpeg on a linux machine with MinGW, but now I'm able to compile on a windows machine, in my case Windows 10.

NOTE:For me it only worked for ffmpeg versions >= 3.0 and I tested using VS 2013 and 2015

Few steps but very important:

Download and install (except YASM):

  • Visual Studio 2013 or 2015

Steps:

  1. Install MSYS2 to a fixed folder (eg.: C:Devmsys64)
  2. Run msys2.exe
  3. Execute command 'pacman -S make gcc diffutils' and press 'Y' to install
  4. Close msys2
  5. Rename C:Devmsys64usrbinlink.exe to some other name (eg.: msys2_link.exe)
  6. Copy and rename 'yasm--win64.exe' to 'C:Devyasm.exe'
  7. Add 'C:Dev' to environment variables PATH
  8. Run VS2013/2015 x86 (for x86) or x64 for (x64) Command Prompt
  9. Execute 'C:Devmsys64msys2_shell.cmd -msys -use-full-path'
  10. On the msys2 window execute 'which cl' and you should see the path of your VS
  11. Execute 'which link' and you should also see the path of your VS
  12. Go to the ffmpeg source path (eg.: 'cd /c/ffmpeg3.3')
  13. Run ./configure and make

Cas cx licence key generator. I use this configuration:

NOTE2:If you used the last line --prefix=/c/ffmpeg3.3/DLLS, as a final step, run make install and the binaries will be copied to that path

Hope it helped.

Linux Install Ffmpeg

Best of luck

Install Ffmpeg Win 10 64 Bit

tweellttweellt

There is a How-to on the FFmpeg Page itself.It didn't work for me so far, but at least you should get rid of the C99 Errors and so on.

Maybe you try installing this stuff (I had to download pkg-config seperatly with Msys2 for it to work) and follow these steps.

EarinorEarinor

Reinstall Win 10 64 Bit

Not the answer you're looking for? Browse other questions tagged buildffmpegmsvc12 or ask your own question.