Atualizar main.sh

This commit is contained in:
mitsudori 2024-11-26 18:37:48 +00:00
parent ef3b446acf
commit a5446ad79c

15
main.sh
View file

@ -2,13 +2,12 @@
# The getopt are for extra param, i like to use -x6 for extra encode processing
# You can read more on the docs: https://www.wavpack.com/wavpack_doc.html
array=("DATE" "TOTALTRACKS" "TRACKNUMBER" "ALBUM" "ARTIST" "TITLE")
for i in *.flac; do
filename=${i%.*}
trap "echo Exited!; exit;" SIGINT SIGTERM
for i in *.flac ; do
filename=${i%.*};
flac --decode -c "$i" | wavpack -i $1 "-" -hhb2 -y -o "$filename.wv";
done
for n in ${array[@]}; do
tag=`metaflac --show-tag=$n "$i"`;
wvtag -w "$tag" "$filename.wv" ;
for n in ${array[@]}; do
tag=`metaflac --show-tag=$n "$i"`;
wvtag -w "$tag" "$filename.wv" ;
done
done