@svta/common-media-library
Version:
A common library for media playback in JavaScript
15 lines • 354 B
TypeScript
import type { EncryptedSample } from './EncryptedSample.js';
import type { FullBox } from './FullBox.js';
/**
* Sample Encryption Box - 'senc'
*
* @group ISOBMFF
*
* @beta
*/
export type SampleEncryptionBox = FullBox & {
type: 'senc';
sampleCount: number;
samples: EncryptedSample[];
};
//# sourceMappingURL=SampleEncryptionBox.d.ts.map