How do you convert an entire directory/folder with ffmpeg via command line or with a batch script?
for i in *.flac; do name=`echo "${i%.*}"`; echo $name; ffmpeg -i "${i}" -ab 320k -map_metadata 0 -id3v2_version 3 "${name}".mp3; done
Batch process flac files into mp3 (safe for file names with spaces) using [1] [2]
flac
mp3