minus-squaregrathium@mastodon.socialtoOpen Source@lemmy.ml•FFmpeg.app: Web-based front end to FFmpeglinkfedilinkarrow-up1·edit-21 year agoIt does, I did it just this morning with the prompt: “Give me a Linux command to convert a directory of .wav files to .flac files” Gave me the result: for file in *.wav; do ffmpeg -i “$file” -c:a flac “${file%.wav}.flac”; done linkfedilink
It does, I did it just this morning with the prompt:
“Give me a Linux command to convert a directory of .wav files to .flac files”
Gave me the result:
for file in *.wav; do ffmpeg -i “$file” -c:a flac “${file%.wav}.flac”; done