3 lines
81 B
Bash
3 lines
81 B
Bash
|
#!/bin/env bash
|
||
|
for i in *.m4a; do ffmpeg -i "$i" -c:a flac "${i%.*}.flac"; done
|