Support coversion of current file

This commit is contained in:
Arun Prakash Jana 2020-02-23 14:56:51 +05:30
parent 702e29bbe9
commit 78372b203a
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 16 additions and 9 deletions

View File

@ -9,10 +9,6 @@
outdir=_mp3files
if ! [ -e "${outdir}" ]; then
mkdir "${outdir}"
fi
handle_multimedia() {
mime="${1}"
file="${2}"
@ -26,9 +22,20 @@ handle_multimedia() {
esac
}
for f in *; do
if [ -f "${f}" ]; then
mimestr="$( file --dereference --brief --mime-type -- "${f}" )"
handle_multimedia "${mimestr}" "${f}"
printf "Process 'a'll in directory or 'c'urrent? "
read -r resp
if [ "$resp" = "a" ]; then
if ! [ -e "${outdir}" ]; then
mkdir "${outdir}"
fi
done
for f in *; do
if [ -f "${f}" ]; then
mimestr="$( file --dereference --brief --mime-type -- "${f}" )"
handle_multimedia "${mimestr}" "${f}"
fi
done
elif [ "$resp" = "c" ] && [ -f "$1" ]; then
ffmpeg -i "${1}" -vn -codec:a libmp3lame -q:a 2 "${1%.*}.mp3"
fi