17 lines
416 B
Bash
Executable file
17 lines
416 B
Bash
Executable file
#!/usr/bin/env 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
|
|
ffmpeg -i "$FILENAME" -n -c:v libvpx -crf 10 -b:v 1M -c:a libvorbis "${FILENAME%.*}.webm" &
|
|
shift
|
|
cd -
|
|
done
|
|
|
|
#convert.sh <Ordner>/*.flv
|
|
#192k = -q 6
|