1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2026-05-16 08:38:24 +02:00
Files
FFmpeg/README.md
T

43 lines
1.6 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
* [ffmpeg](http://ffmpeg.org/ffmpeg.html) is a command line toolbox to
2014-08-12 19:34:47 +02:00
manipulate, convert and stream multimedia content.
* [ffplay](http://ffmpeg.org/ffplay.html) is a minimalistic multimedia player.
2015-02-12 11:57:34 +01:00
* [ffprobe](http://ffmpeg.org/ffprobe.html) is a simple analysis tool to inspect
2014-08-12 19:34:47 +02:00
multimedia content.
2015-02-12 11:59:22 +01:00
* [ffserver](http://ffmpeg.org/ffserver.html) is a multimedia streaming server
for live broadcasts.
2014-08-12 19:34:47 +02:00
* 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.
The online documentation is available in the main [website](http://ffmpeg.org)
and in the [wiki](http://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.