This commit is contained in:
Your Name 2017-05-29 22:20:42 +02:00
parent ef4ad3ae96
commit 9c4cc398ef
3 changed files with 19 additions and 1 deletions

View file

@ -0,0 +1,18 @@
#!/bin/bash
while (( "$#" ))
do
cd "${1%/*}" # gehe ins Verzeichnis
FILENAME=${1##*/} # Dateiname ist alles ab dem letzten '/'
echo "$FILENAME"
# guck dir die Ausgabe erstmal an - wenn alles passt kannst Du das "echo" weglassen
opusenc --bitrate 160 "$FILENAME" "${FILENAME%.*}.opus"
shift
cd -
done
#convert.sh <Ordner>/*.flac
#Es können ausschließlich WAVE, AIFF, FLAC und PCM-Rohdaten verarbeitet werden.

View file

@ -6,7 +6,7 @@ read -p "Wo sollen die Dateien heruntergeladen werden? : " pfad
if [ "$format" == "audio" ]
then
format=140
format=251
else
format=43
fi