Name Mode Size
..
doxy 040000
examples 040000
.gitignore 100644 0 kb
APIchanges 100644 112 kb
Doxyfile 100644 101 kb
Makefile 100644 5 kb
authors.texi 100644 0 kb
bitstream_filters.texi 100644 14 kb
bootstrap.min.css 100644 107 kb
build_system.txt 100644 2 kb
codecs.texi 100644 30 kb
decoders.texi 100644 9 kb
default.css 100644 2 kb
demuxers.texi 100644 21 kb
developer.texi 100644 31 kb
devices.texi 100644 1 kb
doxy-wrapper.sh 100755 0 kb
encoders.texi 100644 76 kb
errno.txt 100644 9 kb
faq.texi 100644 25 kb
fate.texi 100644 7 kb
fate_config.sh.template 100644 1 kb
ffmpeg-bitstream-filters.texi 100644 1 kb
ffmpeg-codecs.texi 100644 1 kb
ffmpeg-devices.texi 100644 1 kb
ffmpeg-filters.texi 100644 1 kb
ffmpeg-formats.texi 100644 1 kb
ffmpeg-protocols.texi 100644 1 kb
ffmpeg-resampler.texi 100644 1 kb
ffmpeg-scaler.texi 100644 1 kb
ffmpeg-utils.texi 100644 1 kb
ffmpeg.texi 100644 67 kb
ffmpeg.txt 100644 6 kb
ffplay.texi 100644 9 kb
ffprobe.texi 100644 20 kb
ffprobe.xsd 100644 20 kb
ffserver.conf 100644 9 kb
ffserver.texi 100644 27 kb
fftools-common-opts.texi 100644 11 kb
filter_design.txt 100644 11 kb
filters.texi 100644 524 kb
formats.texi 100644 8 kb
general.texi 100644 53 kb
git-howto.texi 100644 12 kb
indevs.texi 100644 43 kb
issue_tracker.txt 100644 6 kb
lexicon 100644 1 kb
libav-merge.txt 100644 6 kb
libavcodec.texi 100644 1 kb
libavdevice.texi 100644 1 kb
libavfilter.texi 100644 1 kb
libavformat.texi 100644 1 kb
libavutil.texi 100644 1 kb
libswresample.texi 100644 2 kb
libswscale.texi 100644 2 kb
mailing-list-faq.texi 100644 12 kb
metadata.texi 100644 2 kb
mips.txt 100644 3 kb
multithreading.txt 100644 3 kb
muxers.texi 100644 75 kb
nut.texi 100644 4 kb
optimization.txt 100644 10 kb
outdevs.texi 100644 14 kb
patchwork 100644 1 kb
platform.texi 100644 11 kb
print_options.c 100644 4 kb
protocols.texi 100644 41 kb
rate_distortion.txt 100644 2 kb
resampler.texi 100644 8 kb
scaler.texi 100644 3 kb
snow.txt 100644 21 kb
style.min.css 100644 6 kb
swresample.txt 100644 2 kb
swscale.txt 100644 5 kb
t2h.init 100644 3 kb
t2h.pm 100644 12 kb
tablegen.txt 100644 3 kb
texi2pod.pl 100644 13 kb
texidep.pl 100644 1 kb
undefined.txt 100644 2 kb
utils.texi 100644 21 kb
writing_filters.txt 100644 16 kb
README.md
FFmpeg README ============= FFmpeg is a collection of libraries and tools to process multimedia content such as audio, video, subtitles and related metadata. ## Libraries * `libavcodec` provides implementation of a wider range of codecs. * `libavformat` implements streaming protocols, container formats and basic I/O access. * `libavutil` includes hashers, decompressors and miscellaneous utility functions. * `libavfilter` provides a mean to alter decoded Audio and Video through chain of filters. * `libavdevice` provides an abstraction to access capture and playback devices. * `libswresample` implements audio mixing and resampling routines. * `libswscale` implements color conversion and scaling routines. ## Tools * [ffmpeg](https://ffmpeg.org/ffmpeg.html) is a command line toolbox to manipulate, convert and stream multimedia content. * [ffplay](https://ffmpeg.org/ffplay.html) is a minimalistic multimedia player. * [ffprobe](https://ffmpeg.org/ffprobe.html) is a simple analysis tool to inspect multimedia content. * [ffserver](https://ffmpeg.org/ffserver.html) is a multimedia streaming server for live broadcasts. * Additional small tools such as `aviocat`, `ismindex` and `qt-faststart`. ## Documentation The offline documentation is available in the **doc/** directory. The online documentation is available in the main [website](https://ffmpeg.org) and in the [wiki](https://trac.ffmpeg.org). ### Examples Coding examples are available in the **doc/examples** directory. ## License FFmpeg codebase is mainly LGPL-licensed with optional components licensed under GPL. Please refer to the LICENSE file for detailed information. ## Contributing 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.