From 317778437e827fa2ddfccff086fe3007fb728a47 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Tue, 7 Nov 2017 21:24:22 +0100 Subject: [PATCH] change: nice to 10 and 15 --- flactomp3v2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flactomp3v2 b/flactomp3v2 index fa3e1bb..8e489db 100755 --- a/flactomp3v2 +++ b/flactomp3v2 @@ -59,7 +59,7 @@ EncodingFlacToMp3() { local readonly OUTPUTFILE="$2" # stream flac into the lame encoder - nice --adjustment=2 flac --silent --stdout --decode "$INPUTFILE" | nice --adjustment=3 lame --silent -b $BITRATE -m $MODE --noreplaygain - "$OUTPUTFILE" + nice --adjustment=10 flac --silent --stdout --decode "$INPUTFILE" | nice --adjustment=15 lame --silent -b $BITRATE -m $MODE --noreplaygain - "$OUTPUTFILE" } main() { -- 2.47.3