I'm trying to use FFmpeg in a C++ project in Visual Studio 2010. I want to include the libraries as statically linked files. Simple programs like libavcodec/api-example.c compile without error and no linker error appears in the error view when starting them. However, a message box shows up after starting the application, saying that avutil-51.dll is missing. Do you have any hints on how to fix that?
I used the latest dev build from http://ffmpeg.zeranoe.com/builds/. Then I specified include as additional include directory, avcodec.lib;avfilter.lib;avformat.lib;avutil.lib as additional dependencies and lib as additional library directory.
Launch Command Prompt and type the command FFmpeg in the command prompt terminal and hit Enter. If the FFmpeg is added properly to Windows Path, the command prompt will display the details about FFmpeg like its version number, configuration, etc.
With FFmpeg you can either:
You built your project as per item 1 above. You have to use and redistribute the av*.dll dependent files with your binary to have it working.
"Static" on Zeranoe means that libraries are statically linked into binaries like ffmpeg.exe
. Do not confuse this with static .lib
libraries that link into your binary. Zeranoe does not provide such.
On Zeranoe you will find archives like this:
bin/avcodec-54.dll
bin/avutil-51.dll
lib/avcodec.lib
lib/avutil.lib
"Shared" archive has FFmpeg built with dynamic link to DLL libraries. "Dev" archive has lib files which you can use in your project to link to them as well in a way that ffmpeg.exe does in shared archive.
So, your Visual Studio project can be as simple as this (browse full source here):
extern "C" { // NOTE: Additional directory ..\zeranoe.com\dev\include gets to the files #include "libavcodec\avcodec.h" } // NOTE: Additional directory ..\zeranoe.com\dev\lib gets to the files #pragma comment(lib, "avcodec.lib") // NOTE: Be sure to copy DLL files from ..\zeranoe.com\shared\bin to the directory of // the FFmpegApp.exe binary int _tmain(int argc, _TCHAR* argv[]) { _tprintf(_T("Trying avcodec_register_all... ")); avcodec_register_all(); _tprintf(_T("Done.\n")); return 0; }
You will extract "Dev" archive into dev
subdirectory of Visual Studio project and you will add dev\include
on the additional include path. This will be sufficient to build the binary, and it will be dependent on av*.dll
:
This is when you extract the "Shared" archive, and copy DLLs from its bin
to the directory of your binary. And your app will work from there:
C:\FFmpegApp\Release>FFmpegApp.exe Trying avcodec_register_all... Done.
20 Jan 2016 UPDATE: The project in repository is upgraded to Visual Studio 2013 (older VS 2010 code) and checked against current Zeranoe builds. The sample and instructions remain in good standing.
Note that Win32
builds in Visual Studio assume that you use 32-bit files from Zeranoe. To build 64-bit version, download respective files and set up Visual C++ project respectively, to build x64
(or, the best, download both, set up both configurations and configure include/lib paths respectively). Failure to match bitness would result in error, mentioned in the comments below.
20 Jul 2021 UPDATE: (pulled from comments below) Zeranoe builds are no longer available. A good and officially endorsed alternative is Windows builds by BtbN. You will need a (...)-win64-gpl-shared.zip
or (...)-win64-lgpl-shared.zip
file for this tutorial.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With