You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible to create a distribution of ffmpeg and x264 static libraries with static runtime (/MT) instead of dynamic runtime (/MD)? It simplifies my application deployment without any DLLs. I note that all Visual Studio projects are in the SMP directory for each repository. So it would be a matter of downloading both ffmpeg and x264 repositories along with their dependency repositories and run Visual Studio and modify the C++ build property. See https://learn.microsoft.com/en-us/cpp/build/reference/md-mt-ld-use-run-time-library?view=msvc-170. With your repositories and their dependences already configured, it might be faster than me to create static libraries with static runtime (/MT).
The text was updated successfully, but these errors were encountered:
Thats something youll have to do yourself as the release builds are done by a CI and mofifying every project for a 1 off would take alor of time.
If you just want ffmpeg+x264 and nothing else then just download the x265 repo and ffmpeg and then FFVS to generate a ffmpeg project that only depends on x264 (project_generate.exe --enable-x64) and then you only need to modify the generated ffmpeg project files and x264 project files to /MT which can be done quickly through the VS UI
Context
Would it be possible to create a distribution of ffmpeg and x264 static libraries with static runtime (/MT) instead of dynamic runtime (/MD)? It simplifies my application deployment without any DLLs. I note that all Visual Studio projects are in the SMP directory for each repository. So it would be a matter of downloading both ffmpeg and x264 repositories along with their dependency repositories and run Visual Studio and modify the C++ build property. See https://learn.microsoft.com/en-us/cpp/build/reference/md-mt-ld-use-run-time-library?view=msvc-170. With your repositories and their dependences already configured, it might be faster than me to create static libraries with static runtime (/MT).
The text was updated successfully, but these errors were encountered: