Update icad_tone.py

This commit is contained in:
SpudGunMan
2025-11-12 16:21:20 -08:00
parent c79f3cdfbc
commit c31947194e
+3
View File
@@ -194,6 +194,9 @@ def main():
)
detect_and_alert(audio, SAMPLE_RATE)
buffer = buffer[DETECTION_CHUNK:] # keep remainder for next window
# Prevent buffer from growing forever
if buffer.size > DETECTION_CHUNK * 10:
buffer = buffer[-DETECTION_CHUNK*10:]
except Exception as e:
print(f"Callback error: {e}", file=sys.stderr)
try: