Name Mode Size
..
aarch64 040000
arm 040000
x86 040000
.gitignore 100644 0 kb
Makefile 100644 3 kb
aacpsdsp.c 100644 8 kb
alacdsp.c 100644 4 kb
audiodsp.c 100644 5 kb
blockdsp.c 100644 2 kb
bswapdsp.c 100644 3 kb
checkasm.c 100644 21 kb
checkasm.h 100644 11 kb
exrdsp.c 100644 3 kb
fixed_dsp.c 100644 6 kb
flacdsp.c 100644 4 kb
float_dsp.c 100644 10 kb
fmtconvert.c 100644 4 kb
g722dsp.c 100644 2 kb
h264dsp.c 100644 16 kb
h264pred.c 100644 10 kb
h264qpel.c 100644 3 kb
hevc_add_res.c 100644 3 kb
hevc_idct.c 100644 3 kb
huffyuvdsp.c 100644 3 kb
jpeg2000dsp.c 100644 4 kb
llviddsp.c 100644 6 kb
pixblockdsp.c 100644 5 kb
sbrdsp.c 100644 9 kb
synth_filter.c 100644 4 kb
utvideodsp.c 100644 4 kb
v210enc.c 100644 5 kb
vf_blend.c 100644 6 kb
vf_colorspace.c 100644 13 kb
videodsp.c 100644 4 kb
vp8dsp.c 100644 20 kb
vp9dsp.c 100644 24 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.