@svta/common-media-library
Version:
A common library for media playback in JavaScript
13 lines • 328 B
TypeScript
import type { FullBox } from './FullBox.js';
/**
* ISO/IEC 14496-12:2012 - 8.8.12 Track Fragment Decode Time
*
* @group ISOBMFF
*
* @beta
*/
export type TrackFragmentBaseMediaDecodeTimeBox = FullBox & {
type: 'tfdt';
baseMediaDecodeTime: number;
};
//# sourceMappingURL=TrackFragmentBaseMediaDecodeTimeBox.d.ts.map