@svta/common-media-library
Version:
A common library for media playback in JavaScript
14 lines • 313 B
TypeScript
/**
* A timestamp map is a mapping of MPEG timestamps to local timestamps.
*
* @group WebVTT
*
* @beta
*
* @see {@link https://datatracker.ietf.org/doc/html/rfc8216#section-3.5 | RFC 8216}
*/
export type TimestampMap = {
MPEGTS: number;
LOCAL: number;
};
//# sourceMappingURL=TimestampMap.d.ts.map