diff options
| author | Jean-Francois Mauguit <jfmauguit@mac.com> | 2024-09-24 09:03:25 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-24 09:03:25 -0400 |
| commit | bab614c421ed7ae329d26bf028c4a3b1d2450f5a (patch) | |
| tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/external_dependencies/libmp4v2/README | |
| parent | 4bde6044fddf053f31795b9eaccdd2a5a527d21f (diff) | |
| parent | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (diff) | |
| download | winamp-bab614c421ed7ae329d26bf028c4a3b1d2450f5a.tar.gz | |
Merge pull request #5 from WinampDesktop/community
Merge to main
Diffstat (limited to 'Src/external_dependencies/libmp4v2/README')
| -rw-r--r-- | Src/external_dependencies/libmp4v2/README | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Src/external_dependencies/libmp4v2/README b/Src/external_dependencies/libmp4v2/README new file mode 100644 index 00000000..c8094ac6 --- /dev/null +++ b/Src/external_dependencies/libmp4v2/README @@ -0,0 +1,28 @@ +July 18, 2002 + +MP4V2 Library +============= + +This library provides functions to read, create, and modify mp4 files. + +The detailed documentation of the library is available as a set of man pages +in mpeg4ip/doc/mp4v2. The MP4.3 man page gives an overview of the library. + +Alternately mp4.h in this directory specifies the complete API. + +The file INTERNALS provides an overview of what is happening behind the API. +Note that although we using C++ object oriented features internally, that's +all hidden behind a flat C style API (with C linkage conventions). + +The test and util subdirectories contain some simple programs that use +this library. + +Once make install is run, to use this library, you should: +To use this library in your application, it should be sufficient to: + +1) add the installed library to your final link: + e.g. gcc ... -o foo foo.cpp -lmp4v2 + +2) include mp4.h into your code, + e.g. #include <mp4.h> + |
