Tag Archives: batch
Command line to convert all files in a folder to mp3 using ffmpeg

ffmpeg command line to batch to convert every file in every folder to mp3 and delete original

for /R %%g in (*.m4a) do start /b /wait “” “ffmpeg” -threads 16 -i “%%g” -acodec libmp3lame “%%~dpng.mp3” && del “%%g”

change *.m4a to your source format, eg, *.wav, *.mp4, *.webm, etc