Name Mode Size
compat 040000
doc 040000
libavcodec 040000
libavdevice 040000
libavfilter 040000
libavformat 040000
libavresample 040000
libavutil 040000
libpostproc 040000
libswresample 040000
libswscale 040000
presets 040000
tests 040000
tools 040000
.gitattributes 100644 0 kb
.gitignore 100644 0 kb
.travis.yml 100644 0 kb
CONTRIBUTING.md 100644 0 kb
COPYING.GPLv2 100644 18 kb
COPYING.GPLv3 100644 34 kb
COPYING.LGPLv2.1 100644 26 kb
COPYING.LGPLv3 100644 7 kb
CREDITS 100644 0 kb
Changelog 100644 104 kb
INSTALL.md 100644 1 kb
LICENSE.md 100644 4 kb
MAINTAINERS 100644 27 kb
Makefile 100644 6 kb
README.md 100644 2 kb
RELEASE 100644 0 kb
RELEASE_NOTES 100644 1 kb
arch.mak 100644 1 kb
cmdutils.c 100644 71 kb
cmdutils.h 100644 19 kb
cmdutils_common_opts.h 100644 3 kb
cmdutils_opencl.c 100644 10 kb
common.mak 100644 4 kb
configure 100755 221 kb
ffmpeg.c 100644 162 kb
ffmpeg.h 100644 18 kb
ffmpeg_cuvid.c 100644 5 kb
ffmpeg_dxva2.c 100644 15 kb
ffmpeg_filter.c 100644 41 kb
ffmpeg_opt.c 100644 141 kb
ffmpeg_qsv.c 100644 8 kb
ffmpeg_vaapi.c 100644 18 kb
ffmpeg_vdpau.c 100644 4 kb
ffmpeg_videotoolbox.c 100644 7 kb
ffplay.c 100644 129 kb
ffprobe.c 100644 122 kb
ffserver.c 100644 126 kb
ffserver_config.c 100644 50 kb
ffserver_config.h 100644 5 kb
library.mak 100644 4 kb
version.sh 100755 2 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.