ffmpeg-convert/convert.sh

6 lines
96 B
Bash
Raw Permalink Normal View History

2024-05-20 10:40:41 +02:00
#!/bin/bash
for file in "$@"; do
ffmpeg -i "$file" -ar 48000 -ac 1 "${file%.*}.dfpwm"
done