Skip to content

Instantly share code, notes, and snippets.

@noidexe
Created April 5, 2015 22:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save noidexe/c54d1e1f74e56f24f3a1 to your computer and use it in GitHub Desktop.
Save noidexe/c54d1e1f74e56f24f3a1 to your computer and use it in GitHub Desktop.
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