FFmpeg.AutoGen icon indicating copy to clipboard operation
FFmpeg.AutoGen copied to clipboard

FFmpeg auto generated unsafe bindings for C#/.NET and Core (Linux, MacOS and Mono).

Results 30 FFmpeg.AutoGen issues
Sort by recently updated
recently updated
newest added

I have static DLLImport projects for iOS and MacCatalyst. They rely on the data structures provided in FFmpeg.AutoGen. Unfortunately static ffmpeg ctor currently fails on those platforms with UnsupportedOperationException. Her's...

* **I'm submitting a ... ** - [ ] bug report - [x] feature request - [ ] support request or question => Please do not submit support request or...

For a video processing Maui app, I need ffmpeg access on all Maui platforms (ios,android,mac catalyst, windows). iOS enforces static libraries (thanks, Apple...). So I wondered how FFmpeg.AutoGen goodness is...

- [x] bug report * **What is the current behavior?** "out" array parameters passed as array without ref/out or out modifier don't seem towork. For example av_image_fill_plane_sizes * **If the...

Fixing #182. Tested on OSx with FFmpeg v4.4.1 installed via brew. ``` ➜ ~ ffmpeg -version ffmpeg version 4.4.1 Copyright (c) 2000-2021 the FFmpeg developers built with Apple clang version...

* **I'm submitting a ... ** - [ x] bug report #### Preconditions FFmpeg 4.4.1 (latest brew installation) OS - OSx .NET 6 (or .NET 5). #### Description The signature...

Hi, I forked and modified this nice project, in order to replace our own very old and customized CppSharp-based ffmpeg binding generator. It was still working fine but it was...

Followup to #182 : the latest ref changes fixed av_image_fill_max_pixsteps because arguments are now passed by ref. But for methods with a "const" fixed pointer array argument, MacOs still crashes....

**Note: for support questions, please use [stackoverflow](https://stackoverflow.com/search?tab=newest&q=ffmpeg%20autogen) or special repository on [github.com](in special repository [github.com](https://github.com/Ruslan-B/FFmpeg.AutoGen.Questions/issues))**. This repository's issues are reserved for feature requests and bug reports. * **I'm submitting a...

A contribution back to the project forged from my use of it. Use like so – ``` AssertSuccess( ffmpeg.avformat_alloc_output_context2(&outputContext, null, null, null), "Could not allocate output format context" ); ```...