Compare commits

...

2 Commits

Author SHA1 Message Date
mute a80bd8f669 rvsttd: increase fade-out to 25ms 2026-08-17 07:41:08 +00:00
mute c174576e14 rvsttd: increase fade-out to 10ms 2026-08-17 07:00:35 +00:00
+1 -1
View File
@@ -352,7 +352,7 @@ fn transcriber_loop(
// Apply 5ms fade-out to the last chunk, then feed to both Moonshine and recorder
if let Some(mut chunk) = held_chunk.take() {
let fade_samples = (SAMPLE_RATE as usize * 5) / 1000;
let fade_samples = (SAMPLE_RATE as usize * 25) / 1000; // 25ms
if chunk.len() > fade_samples {
let start = chunk.len() - fade_samples;
for i in 0..fade_samples {