Created
December 9, 2018 07:37
-
-
Save T31337/09f3cd5bf5bd8e7583959a40a3f95dfb to your computer and use it in GitHub Desktop.
Convert All MP3 Files In Folder To WAV Files In wav SubFolder Using FFMPEG For Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
color 0a | |
title FFMPEG Conversion | |
cls | |
echo Converting Files... | |
for /f "tokens=1 delims=." %%a in ('dir /B *.mp3') do ffmpeg -i "%%a.mp3" "./wav/%%a.wav" | |
echo Done! | |
echo | |
echo You Can Now Close This Window (Or Press Enter) | |
@pause > nul & del nul | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment