media-tools/to_opus.sh

29 lines
643 B
Bash
Raw Normal View History

#!/bin/bash
2023-03-24 11:16:18 +01:00
# set shopt-options used by this shell-script
# Note, 0 (true) from shopt -q is "false" in a math context.
2023-03-24 11:16:18 +01:00
shopt -q globstar; globstar_set=$?
((globstar_set)) && shopt -s globstar
shopt -q extglob; extglob_set=$?
((extglob_set)) && shopt -s extglob
# return default shopt-options
function finish {
((globstar_set)) && shopt -u globstar
((extglob_set)) && shopt -u extglob
}
trap finish EXIT
2023-03-24 11:16:18 +01:00
2023-03-24 15:45:41 +01:00
# setting default extension to mp3
if [ $# -eq 0 ]; then
2023-03-24 15:45:41 +01:00
extension="mp3"
else
extension=$@
fi
2023-03-24 11:16:18 +01:00
for file in **/*.@(${extension// /|}); do
ffmpeg -threads 4 -i $file -c:a libopus -b:a 128k "${file%.*}.opus" && rm "$file"
done
2023-03-24 11:16:18 +01:00
exit 0