From c6a4d91a864972b5220ee10ec9f788324d95e76f Mon Sep 17 00:00:00 2001 From: Ranomier <> Date: Sat, 28 Jun 2025 01:34:11 +0200 Subject: [PATCH] fix: only mono for better performance --- modules/software/audio_video/noise_cancel.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/software/audio_video/noise_cancel.nix b/modules/software/audio_video/noise_cancel.nix index 4dd4386..d0bbd2b 100644 --- a/modules/software/audio_video/noise_cancel.nix +++ b/modules/software/audio_video/noise_cancel.nix @@ -12,7 +12,8 @@ "type" = "ladspa"; "name" = "rnnoise"; "plugin" = "${pkgs.rnnoise-plugin}/lib/ladspa/librnnoise_ladspa.so"; - "label" = "noise_suppressor_stereo"; + # mono can be replaced with stereo for double the performance as cost + "label" = "noise_suppressor_mono"; "control" = { "VAD Threshold (%)" = 75.0; };