Random thoughts...
Pages
Home
About me
Quotes
Saturday, May 7, 2011
Batch convert audio files in Windows
Bat file:
@echo off
for %%f in (*.%1) do (
ffmpeg.exe -i "%%~f" -ab 192k -y "%%~nf.mp3"
)
Usage: "
batfilename
.bat
original_file_extension
", e.g. "toMp3.bat wma".
This obviously requires
ffmpeg
.
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment