From 45e889e7643839be17d69caf13fd7249103d3e50 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Sat, 4 Jun 2022 17:10:45 +0200 Subject: [PATCH] add: replay gain parameter variable --- albentohandy | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/albentohandy b/albentohandy index 21d34d8..e964d24 100755 --- a/albentohandy +++ b/albentohandy @@ -325,7 +325,7 @@ SetDefaultVariables() ReadArguments() { - while getopts "3cfhi:m:orw:" optname; do + while getopts "3cfg:hi:m:orw:" optname; do case "$optname" in "3") mp3=true @@ -340,6 +340,9 @@ ReadArguments() flac=true opus=false ;; + "g") + declare -xg replaygainapply="--apply-replaygain-which-is-not-lossless=$OPTARG" + ;; "h") Usage exit 0 -- 2.47.3