Auto Generated FFmpeg wrapper for C#/.NET and Mono.
Wrapper generated for FFmpeg 2.1.3
##Usage
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 I can recommend to read An ffmpeg and SDL Tutorial for C.
-
on Windows:
The native FFmpeg binaries are bundled with repository. The binaries source is Zeranoe FFmpeg, v2.1.3 been used for 32-bit and 64-bit platforms.
The example project shows how specify path to native libraries. -
on OS X:
Install FFmpeg via MacPorts:
sudo port install ffmpeg +universal
Please ensure that FFmpeg.AutoGen.dll
coupled with FFmpeg.AutoGen.config
.
By default MacPorts keeps compiled libraries at /opt/local/lib
.
- on Linux:
You need to updateFFmpeg.AutoGen.config
with full path to FFmpeg libraries.
##Download
Compiled wrapper: http://sourceforge.net/projects/ffmpeg-autogen/files/
##Generation
The wrapper generator uses customized version of ctypesgencore package based on ctypesgen 0.r125.
Prerequisites:
-
FFmpeg library binaries (see Usage)
-
Python 2.7 with packages:
- ctypes 1.0.2
-
gcc - OS dependent:
- on OS X - XCode Command Line Tools
- on Windows - MinGW
Steps to generate:
- Execute: python generate.py
- File
./FFmpeg.AutoGen/FFmpegInvoke.cs
will be regenerated.
##License
GNU Lesser General Public License (LGPL) version 3 or later.
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.