Merge pull request #11 from studnitz/patch-1

Fix typo
This commit is contained in:
David P.
2025-07-09 10:29:23 +02:00
committed by GitHub
+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;