Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 16th, 2012  |  syntax: None  |  size: 0.25 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. ## Кодирование в ogg
  2. @echo off
  3. for /f %%F in ('dir /s /b *.wav') do (
  4. call sox.exe "%%F" "%%~dpnF.ogg"
  5. )
  6.  
  7. ## Декодирование в MS ADPCM
  8. @echo off
  9. for /f %%F in ('dir /s /b *.ogg') do (
  10. call sox.exe "%%F"  -a "%%~dpnF.wav"
  11. )