stream_wav.py: back to 8192 chunk size

Still jitters during QuasiBird.
This commit is contained in:
Thomas Farstrike
2025-12-17 19:36:32 +01:00
parent 736b146eda
commit 4836db557b
@@ -369,7 +369,7 @@ class WAVStream:
# - Larger chunks = less overhead, smoother audio
# - 4096 bytes with async yield works well for responsiveness
# - The 32KB I2S buffer handles timing smoothness
chunk_size = 4096
chunk_size = 8192
bytes_per_original_sample = (bits_per_sample // 8) * channels
total_original = 0