6 lines
96 B
Bash
6 lines
96 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for file in "$@"; do
|
||
|
ffmpeg -i "$file" -ar 48000 -ac 1 "${file%.*}.dfpwm"
|
||
|
done
|