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