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