Renabled AAC for copy with no re-encode step

This commit is contained in:
KrumpetPirate
2018-03-22 14:06:19 -05:00
parent e3d9a9ea35
commit 2ae7e326bb
2 changed files with 10 additions and 11 deletions

View File

@ -17,7 +17,7 @@ if ! [[ $(type -P "$GREP") ]]; then
fi
if [ "$#" -eq 0 ]; then
echo "Usage: bash AXtoMP3.sh [--flac] [--opus ] [--single] AUTHCODE {FILES}"
echo "Usage: bash AXtoMP3 [--flac] [--aac] [--opus ] [--single] AUTHCODE {FILES}"
echo " Note that order does matter!"
exit 1
fi
@ -29,12 +29,12 @@ then
shift
fi
#if [[ "$1" == '--aac' ]]
#then
# codec=copy
# extension=m4b
# shift
#fi
if [[ "$1" == '--aac' ]]
then
codec=copy
extension=m4a
shift
fi
if [[ "$1" = '--opus' ]]
then