Recode FLAC to MP3 with FFMPEG
Code:
for /r %%f in (*.FLAC) do ffmpeg -i "%%f" -ab 320k -map_metadata 0 -id3v2_version 3 "%%~df%%~pf%%~nf.mp3"
Original solution here:
https://stackoverflow.com/questions/...adata#26109838
or for direct usage in CMD:
Code:
for /r %f in (*.FLAC) do ffmpeg -i "%f" -ab 320k -map_metadata 0 -id3v2_version 3 "%~df%~pf%~nf.mp3"