Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
compat/ | 12-May-2024 | - | 2,759 | 1,639 | ||
doc/ | 12-May-2024 | - | 68,950 | 52,235 | ||
ffbuild/ | 12-May-2024 | - | 457 | 339 | ||
fftools/ | 12-May-2024 | - | 22,233 | 18,171 | ||
libavcodec/ | 12-May-2024 | - | 935,211 | 749,921 | ||
libavdevice/ | 12-May-2024 | - | 22,925 | 17,420 | ||
libavfilter/ | 12-May-2024 | - | 234,495 | 182,748 | ||
libavformat/ | 12-May-2024 | - | 226,432 | 170,672 | ||
libavresample/ | 12-May-2024 | - | 9,739 | 7,270 | ||
libavutil/ | 12-May-2024 | - | 78,016 | 51,263 | ||
libpostproc/ | 12-May-2024 | - | 6,407 | 5,076 | ||
libswresample/ | 12-May-2024 | - | 8,593 | 6,501 | ||
libswscale/ | 12-May-2024 | - | 31,274 | 25,874 | ||
presets/ | 12-May-2024 | - | 99 | 84 | ||
tests/ | 12-May-2024 | - | 149,783 | 139,274 | ||
tools/ | 12-May-2024 | - | 8,757 | 6,786 | ||
.gitattributes | D | 12-May-2024 | 50 | 3 | 2 | |
.gitignore | D | 12-May-2024 | 296 | 40 | 39 | |
.mailmap | D | 12-May-2024 | 1.1 KiB | 26 | 25 | |
.travis.yml | D | 12-May-2024 | 531 | 31 | 30 | |
BUILD.gn | D | 12-May-2024 | 74.8 KiB | 1,649 | 1,527 | |
CONTRIBUTING.md | D | 12-May-2024 | 418 | 5 | 3 | |
COPYING.GPLv2 | D | 12-May-2024 | 17.7 KiB | 340 | 281 | |
COPYING.GPLv3 | D | 12-May-2024 | 34.3 KiB | 675 | 553 | |
COPYING.LGPLv2.1 | D | 12-May-2024 | 25.9 KiB | 503 | 418 | |
COPYING.LGPLv3 | D | 12-May-2024 | 7.5 KiB | 166 | 128 | |
CREDITS | D | 12-May-2024 | 274 | 7 | 5 | |
Changelog | D | 12-May-2024 | 74.8 KiB | 2,141 | 2,024 | |
INSTALL.md | D | 12-May-2024 | 596 | 18 | 11 | |
LICENSE.md | D | 12-May-2024 | 4.3 KiB | 130 | 109 | |
MAINTAINERS | D | 12-May-2024 | 29.8 KiB | 638 | 577 | |
Makefile | D | 12-May-2024 | 6.2 KiB | 192 | 140 | |
OAT.xml | D | 12-May-2024 | 10.3 KiB | 115 | 60 | |
README.OpenSource | D | 12-May-2024 | 482 | 10 | 10 | |
README.md | D | 12-May-2024 | 1.7 KiB | 47 | 32 | |
RELEASE | D | 12-May-2024 | 6 | 2 | 1 | |
RELEASE_NOTES | D | 12-May-2024 | 830 | 16 | 11 | |
bundle.json | D | 12-May-2024 | 936 | 34 | 33 | |
configure | D | 12-May-2024 | 254 KiB | 7,726 | 6,803 | |
ohos_config.sh | D | 12-May-2024 | 6.4 KiB | 241 | 202 |
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