@bbx-audio/nectar
    Preparing search index...

    Interface ISampleData

    Represents per-channel audio sample data.

    interface ISampleData {
        channels: Float32Array<ArrayBufferLike>[];
        numChannels: number;
        numSamples: number;
        sampleRate: number;
        timestamp: number;
    }
    Index

    Properties

    channels: Float32Array<ArrayBufferLike>[]

    The individual sample buffers for each channel in the audio signal.

    numChannels: number

    The number of channels in the audio signal.

    numSamples: number

    The number of samples in the audio signal (per-channel, NOT total).

    sampleRate: number

    The number of samples processed by the plugin per-second.

    timestamp: number

    The UNIX timestamp of when this sample data was generated.