README 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. FFmpeg - (c) 2000,2001 Gerard Lantau.
  2. 1) Introduction
  3. ---------------
  4. ffmpeg is a hyper fast realtime audio/video encoder, a streaming
  5. server and a generic audio and video file converter.
  6. It can grab from a standard Video4Linux video source and convert it
  7. into several file formats based on DCT/motion compensation
  8. encoding. Sound is compressed in MPEG audio layer 2 or using an AC3
  9. compatible stream.
  10. What makes ffmpeg interesting ?
  11. - Innovative streaming technology : multiformat, real time encoding,
  12. simple configuration.
  13. - Simple and efficient video encoder: outputs MPEG1, H263, Real
  14. Video(tm), MPEG4, DIVX and MJPEG compatible bitstreams using the
  15. same encoder core.
  16. - Real time encoding (25 fps in 352x288 on a K6 500) using the
  17. video4linux API.
  18. - Generates I and P frames, which means it is far better than a MJPEG
  19. encoder.
  20. - Hyper fast MPEG audio layer 2 compression (50 times faster than
  21. realtime on a K6 500).
  22. - Hyper fast AC3 compatible encoder.
  23. - simple and very small portable C source code, easy to understand and
  24. to modify. It be may the smallest decent MPEG encoder :-)
  25. - optional non real time higher quality encoding (different motion
  26. estimators available).
  27. - Audio and Video decoders are in development.
  28. ffmpeg is made of two programs:
  29. * ffmpeg: soft VCR which encodes in real time to several formats. It
  30. can also encode from any supported input file format to any input
  31. supported format.
  32. * ffserver: high performance live broadcast streaming server based on
  33. the ffmpeg core encoders.
  34. 2) Documentation
  35. ----------------
  36. * Read doc/ffmpeg.txt and doc/ffserver.txt to learn the basic features.
  37. * Read doc/TODO to know what are the know bugs and missing features.
  38. * Read doc/README.dev if you want to contribute or use the codec or
  39. format libraries.
  40. 3) Licensing:
  41. ------------
  42. * See the file COPYING. ffmpeg and the associated library are licensed
  43. under the GNU General Public License. I may change the license of
  44. libavcodec and libav to LGPL if many people ask it (and if they
  45. submit good patches!).
  46. * This code should be patent free since it is very simple. I took care
  47. to use the same video encoder/decoder core for all formats to show
  48. that they really ARE THE SAME except for the encoding huffman codes.
  49. Gerard Lantau (glantau@yahoo.fr).