decreased verbosity

This commit is contained in:
Leaced 2023-03-24 16:05:46 +01:00 committed by GitHub
parent 09898bb2cb
commit a97b2f96f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,7 +22,7 @@ else
fi fi
for file in **/*.@(${extension// /|}); do for file in **/*.@(${extension// /|}); do
ffmpeg -threads 4 -i $file -c:a libopus -b:a 128k "${file%.*}.opus" && rm "$file" ffmpeg -threads 4 -v 0 -i $file -c:a libopus -b:a 128k "${file%.*}.opus" && rm "$file"
done done
exit 0 exit 0