fix: change default sample rate to 16khz

This commit is contained in:
Del Wang
2025-04-26 14:16:48 +08:00
parent 10c464a4e9
commit 4e7b6f6026
@@ -16,7 +16,7 @@ pub static AUDIO_CONFIG: LazyLock<AudioConfig> = LazyLock::new(|| AudioConfig {
pcm: "noop".into(),
channels: 1,
bits_per_sample: 16,
sample_rate: 24000,
sample_rate: 16000,
period_size: 1440 / 4,
buffer_size: 1440,
});