Polyend Tracker Library - v0.1.1
    Preparing search index...

    Interface WavInfo

    Interface for WAV metadata information.

    interface WavInfo {
        bitsPerSample: number;
        numChannels: number;
        numFrames: number;
        sampleRate: number;
    }
    Index

    Properties

    bitsPerSample: number

    Represents the number of bits per sample (8 for 8-bit audio, 16 for 16-bit audio)

    numChannels: number

    Represents the number of channels (1 for mono, 2 for stereo)

    numFrames: number

    Represents the number of audio frames (samples) in the WAV file

    sampleRate: number

    Represents the sample rate (number of samples per second)