convert_to_flac.sh: add

This commit is contained in:
2022-10-26 12:19:03 +02:00
parent d7c082249f
commit 647c207091

2
convert_to_flac.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/env bash
for i in *.m4a; do ffmpeg -i "$i" -c:a flac "${i%.*}.flac"; done