• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-Dec-2019-

compat/H03-Dec-2019-4,5752,788

doc/H03-May-2022-58,40044,193

ffbuild/H03-Dec-2019-450334

fftools/H03-Dec-2019-21,86717,861

libavcodec/H03-Dec-2019-895,012720,099

libavdevice/H03-Dec-2019-22,42816,861

libavfilter/H03-Dec-2019-179,861139,910

libavformat/H03-Dec-2019-210,933158,542

libavresample/H03-Dec-2019-9,7397,270

libavutil/H03-Dec-2019-69,09445,096

libpostproc/H03-Dec-2019-6,4155,073

libswresample/H03-Dec-2019-8,5756,484

libswscale/H03-Dec-2019-27,54122,663

presets/H03-Dec-2019-9984

tests/H03-May-2022-137,852128,780

tools/H03-May-2022-6,4964,925

.gitattributesH A D03-Dec-201950 32

.gitignoreH A D03-Dec-2019269 3938

.travis.ymlH A D03-Dec-2019537 3130

CONTRIBUTING.mdH A D03-Dec-2019418 53

COPYING.GPLv2H A D03-Dec-201917.7 KiB340281

COPYING.GPLv3H A D03-Dec-201934.3 KiB675553

COPYING.LGPLv2.1H A D03-Dec-201925.9 KiB503418

COPYING.LGPLv3H A D03-Dec-20197.5 KiB166128

CREDITSH A D03-Dec-2019274 75

ChangelogH A D03-Dec-201966 KiB1,8771,763

INSTALL.mdH A D03-Dec-2019595 1811

LICENSE.mdH A D03-Dec-20194.3 KiB121102

MAINTAINERSH A D03-Dec-201928.7 KiB618558

MakefileH A D03-Dec-20195.3 KiB175128

README.mdH A D03-Dec-20191.7 KiB4732

RELEASEH A D03-Dec-20196 21

RELEASE_NOTESH A D03-Dec-2019902 1611

config.makH A D03-Dec-20190

configureH A D03-Dec-2019241.2 KiB7,3846,490

README.md

1FFmpeg README
2=============
3
4FFmpeg is a collection of libraries and tools to process multimedia content
5such as audio, video, subtitles and related metadata.
6
7## Libraries
8
9* `libavcodec` provides implementation of a wider range of codecs.
10* `libavformat` implements streaming protocols, container formats and basic I/O access.
11* `libavutil` includes hashers, decompressors and miscellaneous utility functions.
12* `libavfilter` provides a mean to alter decoded Audio and Video through chain of filters.
13* `libavdevice` provides an abstraction to access capture and playback devices.
14* `libswresample` implements audio mixing and resampling routines.
15* `libswscale` implements color conversion and scaling routines.
16
17## Tools
18
19* [ffmpeg](https://ffmpeg.org/ffmpeg.html) is a command line toolbox to
20  manipulate, convert and stream multimedia content.
21* [ffplay](https://ffmpeg.org/ffplay.html) is a minimalistic multimedia player.
22* [ffprobe](https://ffmpeg.org/ffprobe.html) is a simple analysis tool to inspect
23  multimedia content.
24* Additional small tools such as `aviocat`, `ismindex` and `qt-faststart`.
25
26## Documentation
27
28The offline documentation is available in the **doc/** directory.
29
30The online documentation is available in the main [website](https://ffmpeg.org)
31and in the [wiki](https://trac.ffmpeg.org).
32
33### Examples
34
35Coding examples are available in the **doc/examples** directory.
36
37## License
38
39FFmpeg codebase is mainly LGPL-licensed with optional components licensed under
40GPL. Please refer to the LICENSE file for detailed information.
41
42## Contributing
43
44Patches should be submitted to the ffmpeg-devel mailing list using
45`git format-patch` or `git send-email`. Github pull requests should be
46avoided because they are not part of our review process and will be ignored.
47