FFmpeg is a collection of libraries and tools for processing multimedia content such as audio, video, subtitles, and related metadata.
This repository is a fork of FFmpeg with a custom demuxer added to support DELTACAST (c) PCIe capture cards via the VideoMaster SDK.
The main addition is the videomaster input device, which allows FFmpeg to capture video and audio streams directly from supported DELTACAST hardware.
To enable the videomaster demuxer, configure FFmpeg with the --enable-videomaster option in the configure command line.
You must also have the DELTACAST VideoMaster SDK installed and provide the appropriate --extra-c[xx]flags to specify the path to the SDK's public headers, and --extra-ldflags to specify the path to the SDK libraries.
An example configure command line is:
configure --enable-gpl --enable-nonfree --enable-videomaster --extra-cflags="-I../../install/videomaster/win64/include" --extra-cxxflags="-I../../install/videomaster/win64/include" --extra-ldflags="-LIBPATH:../../install/videomaster/win64/lib"Once built, you can use the videomaster input device in FFmpeg commands to capture from DELTACAST cards.
For example:
ffmpeg -f videomaster -i "stream 0 on board 0" output.aviSee the Input Devices documentation for detailed usage and options.
Documentation for the videomaster demuxer is included in doc/indevs.texi and will be available in the compiled documentation.
libavcodecprovides implementation of a wider range of codecs.libavformatimplements streaming protocols, container formats and basic I/O access.libavutilincludes hashers, decompressors and miscellaneous utility functions.libavfilterprovides means to alter decoded audio and video through a directed graph of connected filters.libavdeviceprovides an abstraction to access capture and playback devices.libswresampleimplements audio mixing and resampling routines.libswscaleimplements color conversion and scaling routines.
- ffmpeg is a command line toolbox to manipulate, convert and stream multimedia content.
- ffplay is a minimalistic multimedia player.
- ffprobe is a simple analysis tool to inspect multimedia content.
- Additional small tools such as
aviocat,ismindexandqt-faststart.
The offline documentation is available in the doc/ directory.
The online documentation is available in the main website and in the wiki.
Coding examples are available in the doc/examples directory.
FFmpeg codebase is mainly LGPL-licensed with optional components licensed under GPL. Please refer to the LICENSE file for detailed information.
Patches should be submitted to the ffmpeg-devel mailing list using
git format-patch or git send-email. Github pull requests should be
avoided because they are not part of our review process and will be ignored.