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

..03-May-2022-

compat/H11-Jul-2020-2,7591,639

doc/H03-May-2022-66,19050,014

ffbuild/H08-Apr-2021-451334

fftools/H08-Apr-2021-22,22818,169

libavcodec/H08-Apr-2021-934,450749,346

libavdevice/H08-Apr-2021-22,92017,417

libavfilter/H08-Apr-2021-234,445182,714

libavformat/H08-Apr-2021-226,107170,413

libavresample/H09-Jul-2020-9,7377,269

libavutil/H08-Apr-2021-77,94151,196

libpostproc/H08-Apr-2021-6,4075,076

libswresample/H08-Apr-2021-8,5916,500

libswscale/H08-Apr-2021-31,26425,864

presets/H27-Apr-2020-9984

tests/H03-May-2022-148,400138,153

tools/H03-May-2022-8,6776,718

.mailmapH A D08-Apr-20211.1 KiB2625

.travis.ymlH A D09-Jul-2020531 3130

CONTRIBUTING.mdH A D09-Jul-2020418 53

COPYING.GPLv2H A D27-Apr-202017.7 KiB340281

COPYING.GPLv3H A D27-Apr-202034.3 KiB675553

COPYING.LGPLv2.1H A D27-Apr-202025.9 KiB503418

COPYING.LGPLv3H A D27-Apr-20207.5 KiB166128

CREDITSH A D27-Apr-2020274 75

ChangelogH A D08-Apr-202163.9 KiB1,9521,836

INSTALL.mdH A D09-Jul-2020596 1811

LICENSE.mdH A D11-Jul-20204.3 KiB130109

MAINTAINERSH A D08-Apr-202129.8 KiB638577

MakefileH A D08-Apr-20216.2 KiB192140

README.mdH A D09-Jul-20201.7 KiB4732

RELEASEH A D08-Apr-20214 21

RELEASE_NOTESH A D08-Apr-2021831 1611

VERSIONH A D08-Apr-20214 21

configureH A D08-Apr-2021254 KiB7,7266,803

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