Code: |
lame -S --quiet -t %1.wav %1.mp3
echo BMU V1.0 > "\WavFolder\%1.wav" type %1.mp3 >> \DifferentWaveFolder\%1.wav" del /f /q %1.mp3 |
Code: |
AssignCommand(oPlayer, PlaySound("test")); |
Code: |
@echo off
echo ### echo ### --- echo ### WAV4NwN2 echo ### --- echo ### EXE by LAME© echo ### http://lame.sourceforge.net/ echo ### --- echo ### BATCH by Mythyzyn echo ### http://www.lyncya.fr echo ### --- echo ### pause echo ### --- set hh=%time:~0,2% if "%time:~0,1%"==" " set hh=0%hh:~1,1% set yymmdd_hhmmss=%date:~6,4%_%date:~3,2%_%date:~0,2%_%hh%_%time:~3,2%_%time:~6,2% mkdir %yymmdd_hhmmss% dir %cd%\dir /w /b %cd% > temp_list.txt for /f "delims=" %%i in ('type "temp_list.txt" ^|findstr /i /r ".wav"') do echo %%i >> wav_list.txt for /f %%a in (%cd%\wav_list.txt) do ( echo ### echo ### Traitement du fichier : %%a echo ### lame.exe --quiet %%a %%a.mp3 lame.exe -b 64 --quiet -a -t %%a.mp3 del %%a.mp3 echo BMU V1.0 > %yymmdd_hhmmss%\%%a type %%a.mp3.mp3 >> %yymmdd_hhmmss%\%%a del %%a.mp3.mp3 echo ### echo ### %%a converti. echo ### echo ### --- ) del temp_list.txt del wav_list.txt echo ### echo ### echo ### Fini. echo ### echo ### pause |