View Single Post
Old 30th November 2006, 12:11   #3  |  Link
Pookie
Registered User
 
Join Date: Apr 2005
Posts: 1,339
If you haven't changed the delay yet from the DGindex demux:

08 - Track1 T01 DELAY -425ms.mpa

Command Line

Code:
for %a in (*.mpa) do delaycut -auto -out "%~na.mp2" "%a"

or

Batch File

Code:
for %%a in (*.mpa) do delaycut -auto -out "%%~na.mp2" "%%a"
Search for Jsoto Delaycut

Last edited by Pookie; 30th November 2006 at 12:24.
Pookie is offline   Reply With Quote