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
Posted on September 27, 2018, 9:29 am By xuan
No comments yet Categories: tech tips Tags: batch, convert, ffmpeg, folder, mp3