GitHub response to the war in Ukraine
GitHub as a company is also donating $100,000 to Razom and matching an additional $200,000 of donations from employees to help support relief efforts in the region.
The FFmpeg API is vast and complex and this project exposes it with minimum modifications - support is very limited. Please consider to ask how to questions on stackoverflow.com or in special repository on github.com. The community may be able to offer some assistance but you will largely be on your own. As another option you can search for a solution in C(lang) as with some effort you can convert it to C#.
FFmpeg auto generated unsafe bindings for C#/.NET and Mono.
The basic example of the library usage: video decoding, conversion and frame extraction to jpeg is included in FFmpeg.AutoGen.Example
project.
For the more sophisticated operations please refer to offical ffmpeg Documentation expecially API section of it.
Nuget packages version uses semantic versioning and in sync with MAJOR and MINOR version of FFmpeg as PATCH incremets does not changing API.
-
on Windows:
Native ffmpeg libraries are pre bundled in this repository, please note the are GPL(!) libraries. The x64 libraries source from CODEX FFMPEG. Please check to example project it shows how specify path to libraries. -
on OS X:
Install ffmpeg via Homebrew:
brew install ffmpeg
Normally you need to set static ffmpeg.RootPath =
with full path to FFmpeg libraries.
- on Linux:
Use your package manager of choice. Normally you need to set staticffmpeg.RootPath =
with full path to FFmpeg libraries.
The bindings generator uses CppSharp.
Prerequisites:
- As of time of writing, FFmpeg 5.1 is supported, whilst FFmpeg 6.0 is not. Versions older or inbetween may or may not be supported. Check and contribute to the table below to keep track of the version used.
- Visual Studio 2022 with C# and C++ desktop development workloads and Windows SDK for desktop. Older Visual Studio versions are not supported in the master branch and require minor modification of the project file to do so.
Steps to generate:
- Set the
Active Solution plattform
to a specific plattform and not AnyCPU. Eg. x64 or x86- Just for clarification: Only
FFmpeg.AutoGen.CppSharpUnsafeGenerator
needs to run in a specific architecutre. The bindings may be used in your project as asAnyCPU
or another architecture. However, the bindings won't be valid, even if paired with a .dll of the correct plattform. Bindings need to be regenerated per plattform and included per-plattform with program logic to switch between them.
- Just for clarification: Only
- Run
FFmpeg.AutoGen.CppSharpUnsafeGenerator;
- All files with extension
*.g.cs
inFFmpeg.AutoGen
project will be regenerated.
As build via the https://git.ffmpeg.org/ffmpeg.git
repo and the relevant FFmpeg build docs
Commit or Tag | Plattform | Configure Settings | Comments |
---|---|---|---|
n5.1 | x86_64 | Configure Flags used./configure --disable-nvenc --enable-shared --disable-nvdec --enable-gpl --enable-stripping --disable-vulkan --disable-sdl2 --disable-securetransport --disable-swresample --disable-swscale --disable-avfilter --disable-network --disable-doc --disable-programs --disable-d3d11va --disable-cuda-llvm --disable-dxva2 --disable-schannel --disable-mediafoundation --disable-postproc --disable-avdevice --disable-encoders --disable-hwaccels --disable-muxers --disable-parsers --disable-bsfs --disable-indevs --disable-outdevs --disable-devices --disable-filters --disable-decoders --enable-decoder=h264 --disable-protocols --enable-protocol=file --disable-demuxers --enable-demuxer=mov --enable-demuxer=h264 --enable-demuxer=m4v |
Minimal build and config flags to software decode a soundless H.264 file and nothing else |
Non-commercial open source license
Copyright © Ruslan Balanukhin 2022 All rights reserved.
Distributed under the GNU Lesser General Public License (LGPL) version 3.
http://www.gnu.org/licenses/lgpl.html
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.