|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| compat/ | | 07-Sep-2024 | - | 2,818 | 1,684 |
| doc/ | | 07-Sep-2024 | - | 74,130 | 56,220 |
| ffbuild/ | | 07-Sep-2024 | - | 602 | 439 |
| fftools/ | | 07-Sep-2024 | - | 22,954 | 18,641 |
| libavcodec/ | | 07-Sep-2024 | - | 978,643 | 785,171 |
| libavdevice/ | | 07-Sep-2024 | - | 23,750 | 18,027 |
| libavfilter/ | | 07-Sep-2024 | - | 260,427 | 202,379 |
| libavformat/ | | 07-Sep-2024 | - | 237,130 | 178,292 |
| libavresample/ | | 07-Sep-2024 | - | 9,739 | 7,270 |
| libavutil/ | | 07-Sep-2024 | - | 91,984 | 60,205 |
| libpostproc/ | | 07-Sep-2024 | - | 6,465 | 5,081 |
| libswresample/ | | 07-Sep-2024 | - | 8,950 | 6,729 |
| libswscale/ | | 07-Sep-2024 | - | 33,191 | 27,347 |
| old-version/ | | 07-Sep-2024 | - | | |
| presets/ | | 07-Sep-2024 | - | 99 | 84 |
| tests/ | | 07-Sep-2024 | - | 158,065 | 146,964 |
| tools/ | | 07-Sep-2024 | - | 9,323 | 7,170 |
| .gitattributes | D | 07-Sep-2024 | 50 | 3 | 2 |
| .gitignore | D | 07-Sep-2024 | 296 | 40 | 39 |
| .mailmap | D | 07-Sep-2024 | 1.1 KiB | 26 | 25 |
| .travis.yml | D | 07-Sep-2024 | 531 | 31 | 30 |
| BUILD.gn | D | 07-Sep-2024 | 76.3 KiB | 1,712 | 1,563 |
| CONTRIBUTING.md | D | 07-Sep-2024 | 418 | 5 | 3 |
| COPYING.GPLv2 | D | 07-Sep-2024 | 17.7 KiB | 340 | 281 |
| COPYING.GPLv3 | D | 07-Sep-2024 | 34.3 KiB | 675 | 553 |
| COPYING.LGPLv2.1 | D | 07-Sep-2024 | 25.9 KiB | 503 | 418 |
| COPYING.LGPLv3 | D | 07-Sep-2024 | 7.5 KiB | 166 | 128 |
| CREDITS | D | 07-Sep-2024 | 277 | 7 | 5 |
| Changelog | D | 07-Sep-2024 | 79.3 KiB | 2,282 | 2,156 |
| INSTALL.md | D | 07-Sep-2024 | 596 | 18 | 11 |
| LICENSE.md | D | 07-Sep-2024 | 4.3 KiB | 130 | 109 |
| MAINTAINERS | D | 07-Sep-2024 | 30.5 KiB | 650 | 589 |
| Makefile | D | 07-Sep-2024 | 6.4 KiB | 199 | 146 |
| OAT.xml | D | 07-Sep-2024 | 10.3 KiB | 115 | 60 |
| README.OpenSource | D | 07-Sep-2024 | 482 | 10 | 10 |
| README.md | D | 07-Sep-2024 | 1.8 KiB | 47 | 32 |
| RELEASE | D | 07-Sep-2024 | 6 | 2 | 1 |
| RELEASE_NOTES | D | 07-Sep-2024 | 1.1 KiB | 19 | 14 |
| bundle.json | D | 07-Sep-2024 | 1 KiB | 38 | 37 |
| config_components.h | D | 07-Sep-2024 | 67.1 KiB | 2,099 | 2,097 |
| configure | D | 07-Sep-2024 | 263 KiB | 7,937 | 6,980 |
| ohos_config.sh | D | 07-Sep-2024 | 6.6 KiB | 242 | 203 |
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