Created
April 5, 2015 22:01
-
-
Save noidexe/c54d1e1f74e56f24f3a1 to your computer and use it in GitHub Desktop.
This file contains 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
REM Reemplaza las lineas echo por el comando del conversor | |
REM Copia este archivo a la carpeta donde esten los wavs y ejecutalo | |
@echo off | |
for %%f in (*.wav) do call:mifuncion %%f | |
GOTO:end | |
:mifuncion | |
echo.aca se convertiria %1 a mp3 | |
echo.aca se convertiria %1 a ogg | |
echo.aca se convertiria %1 a acc | |
GOTO:EOF | |
:end | |
echo.Finalizado | |
PAUSE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment