Skip to content

Instantly share code, notes, and snippets.

@T31337
Created December 9, 2018 07:37
Show Gist options
  • Save T31337/09f3cd5bf5bd8e7583959a40a3f95dfb to your computer and use it in GitHub Desktop.
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
@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