Skip to content

Instantly share code, notes, and snippets.

View pro4tlzz's full-sized avatar

Pro4TLZZ pro4tlzz

  • UK
View GitHub Profile
@jshbrntt
jshbrntt / flac-to-mp3.bat
Last active November 6, 2019 09:33
Batch file to convert folder of .flac files to .mp3 using ffmpeg.
@ECHO OFF
FOR %%f IN (*.flac) DO (
echo Converting: %%f
ffmpeg -i "%%f" -ab 320k -map_metadata 0 "%%~nf.mp3"
)
echo Finished
PAUSE