juninho12 / freearc

Automatically exported from code.google.com/p/freearc
1 stars 0 forks source link

freearc+neroAacEnc #332

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. wav> freearc+neroAacEnc >towav >arc.ini
2.packcmd @echo off
setlocal enableextensions enabledelayedexpansion
SET /A Count=1
FOR /R %%i in (*.wav) do (
  cls
  Echo Convert wav to aac [min size / low quallity]. File:!Count!
  neroAacEnc -q 0.3 -if "%%i" -of "%%~dpni.[towav]"
  SET /A Count+=1
)
3.unpackcmd @echo off
setlocal enableextensions enabledelayedexpansion
SET /A Count=1
FOR /R %%i in (*.[towav]) do (
  cls
  Echo Restoring Audio File:!Count!
  aac_dec -if "%%i" -of "%%~dpni.wav"
  Del "%%i"
  SET /A Count+=1
)

What is the expected output? What do you see instead?

What version of the product are you using? On what operating system?

Please provide any additional information below.

Original issue reported on code.google.com by stalker1...@gmail.com on 9 Dec 2012 at 6:32