View Single Post
  #47  
Old 27-01-2022, 12:14
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,177
Thanks: 284
Thanked 1,376 Times in 619 Posts
Masquerade is on a distinguished road
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"

Last edited by Masquerade; 31-10-2022 at 08:34.
Reply With Quote
The Following User Says Thank You to Masquerade For This Useful Post:
KaktoR (27-01-2022)