You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
349 B
Bash

#!/bin/dash
#ffconv - Batch convert from one format to another
echo Convert from...
read ext
echo Convert to...
read toext
for i in *.$ext; do ffmpeg -i "$i" "${i%.*}.$toext"; done
while true; do
read -p "Delete original files? " yn
case $yn in
[Yy]* ) rm *.$ext; exit;;
[Nn]* ) exit;;
* ) printf "Please answer yes or no. ";;
esac
done