mp4box
Version:
JavaScript version of GPAC's MP4Box tool
13 lines (11 loc) • 362 B
JavaScript
BoxParser.createFullBoxCtor("mehd", "MovieExtendsHeaderBox", function(stream) {
if (this.flags & 0x1) {
Log.warn("BoxParser", "mehd box incorrectly uses flags set to 1, converting version to 1");
this.version = 1;
}
if (this.version == 1) {
this.fragment_duration = stream.readUint64();
} else {
this.fragment_duration = stream.readUint32();
}
});