@svta/common-media-library
Version:
A common library for media playback in JavaScript
17 lines • 405 B
TypeScript
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