From 6b52311873b6e78f86942df7e61a396e744e1be2 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Fri, 11 Mar 2022 10:39:45 +0100 Subject: [PATCH] use volume and add high ratio comp as a limiter --- .../telecaster/.fluxbox/scripts/tc_audio_jack_test.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/home/telecaster/.fluxbox/scripts/tc_audio_jack_test.sh b/src/home/telecaster/.fluxbox/scripts/tc_audio_jack_test.sh index f5ffbd5..74045b7 100755 --- a/src/home/telecaster/.fluxbox/scripts/tc_audio_jack_test.sh +++ b/src/home/telecaster/.fluxbox/scripts/tc_audio_jack_test.sh @@ -13,11 +13,12 @@ if [ -f $LOCAL_DIR/.env ]; then fi # GST launch -gst-launch-1.0 filesrc location=/home/guyom/Sounds/test/pc_test-2.mp3 \ +gst-launch-1.0 filesrc location=~/Sounds/Test/test_raw_voice_moreau.wav \ ! queue ! decodebin \ ! queue ! audioconvert \ - ! queue ! rgvolume pre-amp=-24 \ - ! queue ! audiodynamic characteristics=hard-knee mode=compressor threshold=0.125 ratio=6 \ - ! queue ! rglimiter \ + ! queue ! volume volume=2.5 \ + ! queue ! audiodynamic characteristics=soft-knee mode=compressor threshold=0.125 ratio=0.125 \ + ! queue ! volume volume=1.5 \ + ! queue ! audiodynamic characteristics=hard-knee mode=compressor threshold=0.95 ratio=0.001 \ ! queue ! pulsesink -- 2.39.5