Interface EncodedVideoChunk
interface EncodedVideoChunk {
byteLength: number;
duration: number;
timestamp: number;
type: EncodedVideoChunkType;
copyTo(destination: AllowSharedBufferSource): void;
}
byteLength: number;
duration: number;
timestamp: number;
type: EncodedVideoChunkType;
copyTo(destination: AllowSharedBufferSource): void;
}
Index
Properties
Methods
Properties
Readonly
byteLength
byteLength: number
Readonly
duration
duration: number
Readonly
timestamp
timestamp: number
Readonly
type
Methods
copyTo
- copyTo(destination: AllowSharedBufferSource): void
Parameters
- destination: AllowSharedBufferSource
Returns void