• Home
Name Date Size #Lines LOC

..--

compat/12-May-2024-2,7591,639

doc/12-May-2024-68,95052,235

ffbuild/12-May-2024-457339

fftools/12-May-2024-22,23318,171

libavcodec/12-May-2024-935,211749,921

libavdevice/12-May-2024-22,92517,420

libavfilter/12-May-2024-234,495182,748

libavformat/12-May-2024-226,432170,672

libavresample/12-May-2024-9,7397,270

libavutil/12-May-2024-78,01651,263

libpostproc/12-May-2024-6,4075,076

libswresample/12-May-2024-8,5936,501

libswscale/12-May-2024-31,27425,874

presets/12-May-2024-9984

tests/12-May-2024-149,783139,274

tools/12-May-2024-8,7576,786

.gitattributesD12-May-202450 32

.gitignoreD12-May-2024296 4039

.mailmapD12-May-20241.1 KiB2625

.travis.ymlD12-May-2024531 3130

BUILD.gnD12-May-202474.8 KiB1,6491,527

CONTRIBUTING.mdD12-May-2024418 53

COPYING.GPLv2D12-May-202417.7 KiB340281

COPYING.GPLv3D12-May-202434.3 KiB675553

COPYING.LGPLv2.1D12-May-202425.9 KiB503418

COPYING.LGPLv3D12-May-20247.5 KiB166128

CREDITSD12-May-2024274 75

ChangelogD12-May-202474.8 KiB2,1412,024

INSTALL.mdD12-May-2024596 1811

LICENSE.mdD12-May-20244.3 KiB130109

MAINTAINERSD12-May-202429.8 KiB638577

MakefileD12-May-20246.2 KiB192140

OAT.xmlD12-May-202410.3 KiB11560

README.OpenSourceD12-May-2024482 1010

README.mdD12-May-20241.7 KiB4732

RELEASED12-May-20246 21

RELEASE_NOTESD12-May-2024830 1611

bundle.jsonD12-May-2024936 3433

configureD12-May-2024254 KiB7,7266,803

ohos_config.shD12-May-20246.4 KiB241202

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": "4.4.1",
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 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