This commit is contained in:
Alexander von Studnitz
2025-07-09 09:47:26 +02:00
committed by GitHub
parent 08cf34ee0d
commit ee59837857
+1 -1
View File
@@ -253,7 +253,7 @@ const runAudioIterator = async () => {
}
// To play back audio, we loop over all audio chunks (typically very short) of the file and play them at the correct
// timestamp. The result is a continuous, uninteruppted audio signal.
// timestamp. The result is a continuous, uninterrupted audio signal.
for await (const { buffer, timestamp } of audioBufferIterator!) {
const node = audioContext!.createBufferSource();
node.buffer = buffer;