From 5d677f583ddd47401e17e60f97856f5d2921a73b Mon Sep 17 00:00:00 2001 From: emphasize Date: Sat, 2 Dec 2023 19:11:26 +0100 Subject: [PATCH 1/2] add audio service ducking default config --- ovos_config/mycroft.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ovos_config/mycroft.conf b/ovos_config/mycroft.conf index c92e09c..2a60179 100644 --- a/ovos_config/mycroft.conf +++ b/ovos_config/mycroft.conf @@ -696,6 +696,11 @@ "active": true } }, + // audio service ducking - lowering volume of background audio when TTS is playing + // NOTE: If the TTS config 'pulse_duck' is set to true, this setting will be ignored + // and pulse audio role ducking will be used instead. + "duck": true, + // DEPRECATED - this value is only used as a fallback when OCP is not installed // OCP is a full fledged media player that handles everything from video to playlists // it plugs into the audio service api to capture playback and provide backwards compat From 0a1315cee4c8c774b16ce20acac0e57a6963f40c Mon Sep 17 00:00:00 2001 From: emphasize Date: Sat, 2 Dec 2023 19:21:45 +0100 Subject: [PATCH 2/2] expand comment --- ovos_config/mycroft.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ovos_config/mycroft.conf b/ovos_config/mycroft.conf index 2a60179..bfa7c05 100644 --- a/ovos_config/mycroft.conf +++ b/ovos_config/mycroft.conf @@ -696,7 +696,8 @@ "active": true } }, - // audio service ducking - lowering volume of background audio when TTS is playing + // audio service ducking - lowering volume of background audio when TTS or system sound + // is playing // NOTE: If the TTS config 'pulse_duck' is set to true, this setting will be ignored // and pulse audio role ducking will be used instead. "duck": true,