Describes loaded audio source data.
interface AudioSourceData {
arrayBuffer: ArrayBuffer;
audioBuffer: AudioBuffer;
id: string;
timestamp: number;
}
Represents decoded and raw audio source data.
arrayBuffer: ArrayBuffer - Raw binary audio data.audioBuffer: AudioBuffer - Decoded audio buffer.id: string - Unique identifier of the audio source.timestamp: number - Creation timestamp.