Log in

View Full Version : Batch Normailzing ac3 from vob


Ekin
6th January 2008, 00:52
Hello,

I am looking for a software that can batch demux my music videos vob and normalize the audios and remux it back into .vob? Any suggestions?

P.S. I don't mind having a normalize audio in .mp2 format instead of .ac3 in a vob. Just as long as the audio is normalize in the vob. And batch would be great because I have a lot to do.

Any suggestion would be great

Thanks!

smok3
6th January 2008, 01:12
part of the solution (demuxing/remuxing/transcoding not included), this script will dump wav and do replaygain track operation:

@ECHO OFF
for /f "delims=+++++" %%i in (%1) DO (
title dumping audio from %%i
mplayer.exe -vc null -vo null -ao pcm:fast %%i
rename audiodump.wav %%~ni.wav

title wavegain 89dB %%~ni.wav
wavegain -y -s %%~ni.wav
)
title finito :)
echo finito :)
pause

mplayer and wavegain should be on path, %1 is ascii list of files.