2
I'm running into a problem when using a bash for loop to convert all .aea files in a directory using ffmpeg (in this case, to .wav). I'm using the following:
for f in *.aea; do ffmpeg -i "$f" “${f%.aea}.wav"; done
I immediately receive:
>
>
And can issue no further commands. Conversion file-by-file using, e.g.:
sudo ffmpeg -i "Track 19.aea" Track019.wav
works just fine.
Thanks so much for this, slhck! That did it. Much appreciated. – zanfona – 2014-06-19T11:53:29.677