From: Bastian Dehn Date: Tue, 23 Jul 2019 09:37:53 +0000 (+0200) Subject: change: flactovorbis with long options X-Git-Tag: v1.0.0^2~76 X-Git-Url: https://gitweb.hhaalo.de/?a=commitdiff_plain;h=4e6fc3b2452a59ef3f95e6ea0192f2a06303cbd6;p=albentohandy.git change: flactovorbis with long options --- diff --git a/flactovorbis b/flactovorbis index 02d418c..ac6b374 100755 --- a/flactovorbis +++ b/flactovorbis @@ -6,7 +6,7 @@ ReadFlacToOggTags() local readonly OUTPUFILE="$2" metaflac --export-tags-to=- $INPUTFILE \ - | vorbiscomment -c - -w $OUTPUTFILE + | vorbiscomment --commentfile - --write $OUTPUTFILE } EncodingFlacToOgg() @@ -16,7 +16,8 @@ EncodingFlacToOgg() # stream flac into the ogg vorbis nice --adjustment=10 flac --silent --stdout --decode "$INPUTFILE" \ - | nice --adjustment=15 oggenc -Q -q 6 -o "$OUTPUTFILE" - + | nice --adjustment=15 oggenc --quiet --quality 6 \ + --output "$OUTPUTFILE" - } main()