Skip to content

Commit 4836db5

Browse files
stream_wav.py: back to 8192 chunk size
Still jitters during QuasiBird.
1 parent 736b146 commit 4836db5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal_filesystem/lib/mpos/audio/stream_wav.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ async def play_async(self):
369369
# - Larger chunks = less overhead, smoother audio
370370
# - 4096 bytes with async yield works well for responsiveness
371371
# - The 32KB I2S buffer handles timing smoothness
372-
chunk_size = 4096
372+
chunk_size = 8192
373373
bytes_per_original_sample = (bits_per_sample // 8) * channels
374374
total_original = 0
375375

0 commit comments

Comments
 (0)