File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
src/AudioTools/AudioCodecs Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 1313namespace audio_tools {
1414
1515/* *
16- * @brief MP4Parser is a class that parses MP4 files and extracts boxes (atoms).
17- * It provides a callback mechanism to process each box as it is parsed. You can
18- * define specific callbacks for individual box types or use a generic callback
19- * for the undefined boxes: By default it just prints the box information to
20- * Serial.
21- * If a container box contains data, it will be processed recursively and if it
22- * contains data itself, it might be reported in a second callback call.
16+ * @brief MP4Parser is a class that parses MP4 container files and extracts
17+ * boxes (atoms). It provides a callback mechanism to process each box as it is
18+ * parsed. You can define specific callbacks for individual box types or use a
19+ * generic callback for the undefined boxes: By default it just prints the box
20+ * information to Serial. If a container box contains data, it will be processed
21+ * recursively and if it contains data itself , it might be reported in a second
22+ * callback call.
2323 * @note This parser expect the mdat box to be the last box in the file. This
2424 * can be achieve with the following ffmpeg commands:
2525 * - ffmpeg -i ../sine.wav -c:a alac -movflags +faststart alac.m4a
You can’t perform that action at this time.
0 commit comments