local readonly OUTPUFILE="$2"
metaflac --export-tags-to=- $INPUTFILE \
- | vorbiscomment -c - -w $OUTPUTFILE
+ | vorbiscomment --commentfile - --write $OUTPUTFILE
}
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()