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 1 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 74 kb
INSTALL.md 100644 1 kb
LICENSE.md 100644 4 kb
MAINTAINERS 100644 28 kb
Makefile 100644 6 kb
README.md 100644 2 kb
RELEASE 100644 0 kb
RELEASE_NOTES 100644 4 kb
arch.mak 100644 1 kb
cmdutils.c 100644 69 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 183 kb
ffmpeg.c 100644 146 kb
ffmpeg.h 100644 16 kb
ffmpeg_dxva2.c 100644 20 kb
ffmpeg_filter.c 100644 37 kb
ffmpeg_opt.c 100644 123 kb
ffmpeg_vda.c 100644 4 kb
ffmpeg_vdpau.c 100644 12 kb
ffplay.c 100644 131 kb
ffprobe.c 100644 115 kb
ffserver.c 100644 121 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](http://ffmpeg.org/ffmpeg.html) is a command line toolbox to manipulate, convert and stream multimedia content. * [ffplay](http://ffmpeg.org/ffplay.html) is a minimalistic multimedia player. * [ffprobe](http://ffmpeg.org/ffprobe.html) is a simple analysis tool to inspect multimedia content. * [ffserver](http://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](http://ffmpeg.org) and in the [wiki](http://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.