On 01/27/2018 11:19 AM, Ed Greshko wrote:
On 01/28/18 03:03, Antonio M wrote:
I have not clear how to convert many files at same time by ffmpeg or Vlc...
It is only 03:20 here.... But something like
for f in *.m4a; do ffmpeg -i "$f" "$f.mp3"; done
could be done.
Close, but that will give you output files like filename.m4a.mp3.
for f in *.m4a; do ffmpeg -i "$f" "${f%.m4a}.mp3"; done
_______________________________________________
users mailing list -- users@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe send an email to users-leave@xxxxxxxxxxxxxxxxxxxxxxx