menu
AudioSampleFormat
import { AudioSampleFormat } from "destack:audio/binding";
PCM sample format.
1export enum AudioSampleFormat {2 U8 = 1,3 S16 = 2,4 S24 = 3,5 S32 = 4,6 F32 = 5,7 F64 = 6,8}Variants
U8 = 1Unsigned 8-bit PCM.
S16 = 2Signed 16-bit PCM.
S24 = 3Signed 24-bit PCM in 32-bit containers.
S32 = 4Signed 32-bit PCM.
F32 = 532-bit floating-point PCM.
F64 = 664-bit floating-point PCM.