forked from ahurac/dotfiles
Script convertofut
This commit is contained in:
parent
a09cd44ec5
commit
3ec0c750f5
1 changed files with 43 additions and 0 deletions
43
bin/convertofut
Executable file
43
bin/convertofut
Executable file
|
@ -0,0 +1,43 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
error() {
|
||||||
|
printf '\033[1;31m%s\033[0m %s\n' "ERROR:" "$1"
|
||||||
|
shift
|
||||||
|
exit "$1"
|
||||||
|
}
|
||||||
|
|
||||||
|
trap 'error "$error" "$?"' EXIT; set -e
|
||||||
|
|
||||||
|
error="Le premier argument doit être l'extension des fichiers à convertir."
|
||||||
|
[ -n "$1" ]; format_in="$1" ; shift
|
||||||
|
error="Le second argument doit être l'extension des fichiers convertis."
|
||||||
|
[ -n "$1" ]; format_out="$1"; shift
|
||||||
|
|
||||||
|
set +e; trap - EXIT
|
||||||
|
|
||||||
|
while [ -z "$input" ] ; do
|
||||||
|
printf '%s' "Dossier à convertir : "
|
||||||
|
read -r input
|
||||||
|
done
|
||||||
|
|
||||||
|
output=../output
|
||||||
|
|
||||||
|
set -e
|
||||||
|
cd "$input"
|
||||||
|
mkdir -p "$output"
|
||||||
|
set +e
|
||||||
|
|
||||||
|
case "$format_out" in
|
||||||
|
mp3)
|
||||||
|
options="-ab 320k"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
for file in **/*".${format_in}"; do
|
||||||
|
output_file="${output}/$(dirname "$file")/$(basename "${file}" ".${format_in}").${format_out}"
|
||||||
|
mkdir -p "$(dirname "${output_file}")"
|
||||||
|
ffmpeg -i "$file" $options "${output_file}"
|
||||||
|
done
|
||||||
|
|
Loading…
Reference in a new issue