README 918 B

12345678910111213141516171819202122232425262728
  1. July 18, 2002
  2. MP4V2 Library
  3. =============
  4. This library provides functions to read, create, and modify mp4 files.
  5. The detailed documentation of the library is available as a set of man pages
  6. in mpeg4ip/doc/mp4v2. The MP4.3 man page gives an overview of the library.
  7. Alternately mp4.h in this directory specifies the complete API.
  8. The file INTERNALS provides an overview of what is happening behind the API.
  9. Note that although we using C++ object oriented features internally, that's
  10. all hidden behind a flat C style API (with C linkage conventions).
  11. The test and util subdirectories contain some simple programs that use
  12. this library.
  13. Once make install is run, to use this library, you should:
  14. To use this library in your application, it should be sufficient to:
  15. 1) add the installed library to your final link:
  16. e.g. gcc ... -o foo foo.cpp -lmp4v2
  17. 2) include mp4.h into your code,
  18. e.g. #include <mp4.h>