jellyfin-ffmpeg/README.md

47 lines
1.8 KiB
Markdown
Raw Normal View History

2014-03-27 12:53:19 +00:00
FFmpeg README
2014-07-19 19:38:16 +00:00
=============
2014-03-27 12:53:19 +00:00
2014-09-14 18:05:07 +00:00
FFmpeg is a collection of libraries and tools to process multimedia content
such as audio, video, subtitles and related metadata.
2014-03-27 12:53:19 +00:00
2014-09-14 18:05:07 +00:00
## Libraries
2014-07-19 19:38:16 +00:00
2014-09-14 18:05:07 +00:00
* `libavcodec` provides implementation of a wider range of codecs.
* `libavformat` implements streaming protocols, container formats and basic I/O access.
* `libavutil` includes hashers, decompressors and miscellaneous utility functions.
2022-04-27 12:24:39 +00:00
* `libavfilter` provides means to alter decoded audio and video through a directed graph of connected filters.
2014-09-14 18:05:07 +00:00
* `libavdevice` provides an abstraction to access capture and playback devices.
* `libswresample` implements audio mixing and resampling routines.
* `libswscale` implements color conversion and scaling routines.
2014-03-27 12:53:19 +00:00
2014-09-14 18:05:07 +00:00
## Tools
2014-03-27 12:53:19 +00:00
2016-03-06 23:15:29 +00:00
* [ffmpeg](https://ffmpeg.org/ffmpeg.html) is a command line toolbox to
2014-09-14 18:05:07 +00:00
manipulate, convert and stream multimedia content.
2016-03-06 23:15:29 +00:00
* [ffplay](https://ffmpeg.org/ffplay.html) is a minimalistic multimedia player.
* [ffprobe](https://ffmpeg.org/ffprobe.html) is a simple analysis tool to inspect
2014-09-14 18:05:07 +00:00
multimedia content.
* Additional small tools such as `aviocat`, `ismindex` and `qt-faststart`.
2014-03-27 12:53:19 +00:00
2014-09-14 18:05:07 +00:00
## Documentation
2014-03-27 12:53:19 +00:00
2014-09-14 18:05:07 +00:00
The offline documentation is available in the **doc/** directory.
2016-03-06 23:15:29 +00:00
The online documentation is available in the main [website](https://ffmpeg.org)
and in the [wiki](https://trac.ffmpeg.org).
2014-09-14 18:05:07 +00:00
### Examples
2014-12-04 22:19:02 +00:00
Coding examples are available in the **doc/examples** directory.
2014-09-14 18:05:07 +00:00
## License
FFmpeg codebase is mainly LGPL-licensed with optional components licensed under
GPL. Please refer to the LICENSE file for detailed information.
2016-03-06 23:15:29 +00:00
## Contributing
Patches should be submitted to the ffmpeg-devel mailing list using
`git format-patch` or `git send-email`. Github pull requests should be
2016-10-29 16:39:40 +00:00
avoided because they are not part of our review process and will be ignored.