• Home
Name Date Size #Lines LOC

..--

compat/07-Sep-2024-2,8181,684

doc/07-Sep-2024-74,13056,220

ffbuild/07-Sep-2024-602439

fftools/07-Sep-2024-22,95418,641

libavcodec/07-Sep-2024-978,643785,171

libavdevice/07-Sep-2024-23,75018,027

libavfilter/07-Sep-2024-260,427202,379

libavformat/07-Sep-2024-237,130178,292

libavresample/07-Sep-2024-9,7397,270

libavutil/07-Sep-2024-91,98460,205

libpostproc/07-Sep-2024-6,4655,081

libswresample/07-Sep-2024-8,9506,729

libswscale/07-Sep-2024-33,19127,347

old-version/07-Sep-2024-

presets/07-Sep-2024-9984

tests/07-Sep-2024-158,065146,964

tools/07-Sep-2024-9,3237,170

.gitattributesD07-Sep-202450 32

.gitignoreD07-Sep-2024296 4039

.mailmapD07-Sep-20241.1 KiB2625

.travis.ymlD07-Sep-2024531 3130

BUILD.gnD07-Sep-202476.3 KiB1,7121,563

CONTRIBUTING.mdD07-Sep-2024418 53

COPYING.GPLv2D07-Sep-202417.7 KiB340281

COPYING.GPLv3D07-Sep-202434.3 KiB675553

COPYING.LGPLv2.1D07-Sep-202425.9 KiB503418

COPYING.LGPLv3D07-Sep-20247.5 KiB166128

CREDITSD07-Sep-2024277 75

ChangelogD07-Sep-202479.3 KiB2,2822,156

INSTALL.mdD07-Sep-2024596 1811

LICENSE.mdD07-Sep-20244.3 KiB130109

MAINTAINERSD07-Sep-202430.5 KiB650589

MakefileD07-Sep-20246.4 KiB199146

OAT.xmlD07-Sep-202410.3 KiB11560

README.OpenSourceD07-Sep-2024482 1010

README.mdD07-Sep-20241.8 KiB4732

RELEASED07-Sep-20246 21

RELEASE_NOTESD07-Sep-20241.1 KiB1914

bundle.jsonD07-Sep-20241 KiB3837

config_components.hD07-Sep-202467.1 KiB2,0992,097

configureD07-Sep-2024263 KiB7,9376,980

ohos_config.shD07-Sep-20246.6 KiB242203

README.OpenSource

1[
2    {
3        "Name": "FFmpeg",
4        "License": "LGPL V2.1/LGPL V3.0/GPL V2.0/GPL V3.0",
5        "License File": "COPYING.LGPLv2.1/COPYING.LGPLv3/COPYING.GPLv2/COPYING.GPLv3",
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