MP4AddVideoTrack - Add a video track
#include <mp4.h>
MP4TrackId MP4AddVideoTrack(
MP4FileHandle hFile,
u_int32_t timeScale,
u_int32_t sampleDuration,
u_int16_t width,
u_int16_t height,
u_int8_t videoType = MP4_MPEG4_VIDEO_TYPE
)
Upon success, the track id of the new track. Upon an error, MP4_INVALID_TRACK_ID.
MP4AddVideoTrack adds a video track to the mp4 file. MP4WriteSample() can then be used to add the desired video samples.
It is recommended that the time scale be set to 90000 so as to preserve the timing information accurately for the range of video frame rates commonly in use.
If the video frame rate is to be fixed then the sampleDuration argument should be give the appropriate fixed value. If the video frame rate is to be variable then the value MP4_INVALID_SAMPLE_DURATION should be given for the sampleDuration argument.
MP4(3)