--- /dev/null
+#!/usr/bin/env bash
+
+set -e
+
+# Audio
+AUDIO_CHANNELS=2
+AUDIO_OPUS_BITRATE=96000
+AUDIO_MP3_QUALITY=4.0
+
+LOCAL_DIR=$(dirname "$0")
+if [ -f $LOCAL_DIR/.env ]; then
+ source $LOCAL_DIR/.env
+fi
+
+# GST launch
+gst-launch-1.0 filesrc location=/home/guyom/Sounds/test/pc_test-2.mp3 \
+ ! queue ! decodebin \
+ ! queue ! audioconvert \
+ ! queue ! rgvolume pre-amp=-24 \
+ ! queue ! audiodynamic characteristics=hard-knee mode=compressor threshold=0.125 ratio=6 \
+ ! queue ! rglimiter \
+ ! queue ! pulsesink
+