Files
FFmpeg/README.md
T

47 lines
1.7 KiB
Markdown
Raw Normal View History

2011-03-17 17:02:14 +01:00
FFmpeg README
2014-05-27 20:14:48 +02:00
=============
2001-07-22 14:37:44 +00:00
FFmpeg is a collection of libraries and tools to process multimedia content
2014-08-12 19:34:47 +02:00
such as audio, video, subtitles and related metadata.
2001-07-22 14:37:44 +00:00
2014-08-12 19:34:47 +02:00
## Libraries
2014-05-27 20:14:48 +02:00
2014-08-12 19:34:47 +02: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.
* `libavfilter` provides a mean to alter decoded Audio and Video through chain of filters.
* `libavdevice` provides an abstraction to access capture and playback devices.
* `libswresample` implements audio mixing and resampling routines.
2014-08-12 19:34:47 +02:00
* `libswscale` implements color conversion and scaling routines.
2001-07-22 14:37:44 +00:00
2014-08-12 19:34:47 +02:00
## Tools
2001-07-22 14:37:44 +00:00
2015-10-05 23:39:08 -04:00
* [ffmpeg](https://ffmpeg.org/ffmpeg.html) is a command line toolbox to
2014-08-12 19:34:47 +02:00
manipulate, convert and stream multimedia content.
2015-10-05 23:39:08 -04: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-08-12 19:34:47 +02:00
multimedia content.
* Additional small tools such as `aviocat`, `ismindex` and `qt-faststart`.
2012-04-06 10:23:26 +02:00
2014-08-12 19:34:47 +02:00
## Documentation
2012-04-06 10:23:26 +02:00
2014-08-12 19:34:47 +02:00
The offline documentation is available in the **doc/** directory.
2015-10-05 23:39:08 -04:00
The online documentation is available in the main [website](https://ffmpeg.org)
and in the [wiki](https://trac.ffmpeg.org).
2014-08-12 19:34:47 +02:00
### Examples
Coding examples are available in the **doc/examples** directory.
2014-08-12 19:34:47 +02:00
## License
FFmpeg codebase is mainly LGPL-licensed with optional components licensed under
2014-08-12 19:34:47 +02:00
GPL. Please refer to the LICENSE file for detailed information.
2015-09-14 13:24:22 -08: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-09-18 00:41:46 +01:00
avoided because they are not part of our review process and will be ignored.