scripts/m4a2wav
2019-08-08 17:35:54 +02:00

15 lines
No EOL
179 B
Bash
Executable file

#!/bin/sh
usage() {
echo <<EOF
m4a2wav
Usage:
m4a2wav
Converts all m4a files in the current directory to
wav format. Requires ffmpeg.
EOF
}
fd -e m4a -x ffmpeg -i {} {.}.wav