15 lines
No EOL
179 B
Bash
Executable file
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 |