Converted by command: for i in *.mp3; do new_name=${i%.mp3}.ogg; echo "$i -> $new_name"; ffmpeg -i $i $new_name; done