UNPKG

@svta/common-media-library

Version:
17 lines 405 B
import type { FullBox } from './FullBox.js'; /** * ISO/IEC 23001-7:2011 - 8.1 Protection System Specific Header Box * * @group ISOBMFF * * @beta */ export type ProtectionSystemSpecificHeaderBox = FullBox & { type: 'pssh'; systemId: number[]; kidCount: number; kid: number[]; dataSize: number; data: number[]; }; //# sourceMappingURL=ProtectionSystemSpecificHeaderBox.d.ts.map