• Home
Name Date Size #Lines LOC

..--

compat/06-Mar-2025-2,8181,684

doc/06-Mar-2025-74,13056,220

ffbuild/06-Mar-2025-602439

fftools/06-Mar-2025-22,95418,641

libavcodec/06-Mar-2025-978,738785,279

libavdevice/06-Mar-2025-23,75018,027

libavfilter/06-Mar-2025-260,443202,393

libavformat/06-Mar-2025-238,556179,513

libavresample/06-Mar-2025-9,7397,270

libavutil/06-Mar-2025-91,99460,215

libpostproc/06-Mar-2025-6,4655,081

libswresample/06-Mar-2025-8,9986,775

libswscale/06-Mar-2025-33,19227,348

old-version/06-Mar-2025-

presets/06-Mar-2025-9984

tests/06-Mar-2025-158,065146,964

tools/06-Mar-2025-9,3237,170

.gitattributesD06-Mar-202550 32

.gitignoreD06-Mar-2025296 4039

.mailmapD06-Mar-20251.1 KiB2625

.travis.ymlD06-Mar-2025531 3130

BUILD.gnD06-Mar-202577.4 KiB1,7451,596

CONTRIBUTING.mdD06-Mar-2025418 53

COPYING.GPLv2D06-Mar-202517.7 KiB340281

COPYING.GPLv3D06-Mar-202534.3 KiB675553

COPYING.LGPLv2.1D06-Mar-202525.9 KiB503418

COPYING.LGPLv3D06-Mar-20257.5 KiB166128

CREDITSD06-Mar-2025277 75

ChangelogD06-Mar-202579.3 KiB2,2822,156

INSTALL.mdD06-Mar-2025596 1811

LICENSE.mdD06-Mar-20254.3 KiB130109

MAINTAINERSD06-Mar-202530.5 KiB650589

MakefileD06-Mar-20256.4 KiB199146

OAT.xmlD06-Mar-202510.3 KiB11560

README.OpenSourceD06-Mar-2025411 1010

README.mdD06-Mar-20251.8 KiB4732

RELEASED06-Mar-20256 21

RELEASE_NOTESD06-Mar-20251.1 KiB1914

android_mac_config.shD06-Mar-20256.9 KiB251212

bundle.jsonD06-Mar-20251.2 KiB4140

config_components.hD06-Mar-202567.2 KiB2,1012,099

configureD06-Mar-2025263 KiB7,9376,980

ios_config.shD06-Mar-20256.7 KiB250211

ohos_config.shD06-Mar-20257 KiB254213

README.OpenSource

1[
2    {
3        "Name": "FFmpeg",
4        "License": "LGPL V2.1",
5        "License File": "COPYING.LGPLv2.1",
6        "Version Number": "5.1.4",
7        "Upstream URL": "http://www.ffmpeg.org/",
8        "Description": "FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created."
9    }
10]

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 means to alter decoded audio and video through a directed graph of connected 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