Convert MP4 to MP3

Using FFmpeg for Audacity command line tool, here’s a simple batch file that lets you drag a series of MP4 files on top of the batch file, and it will convert them all to MP3.

@echo off
 
:start
if [%1] == [] goto done
set args=%1
"c:\Program Files (x86)\FFmpeg for Audacity\ffmpeg.exe" -i %args% %args%.mp3
shift
goto start
 
:done
pause

Comments

Popular posts from this blog

C# Record Serialization

Add timestamp to photo using ImageMagick

Read/write large blob to SQL Server from C#