View Single Post
Old 5th February 2020, 12:10   #22  |  Link
anonymlol
Registered User
 
Join Date: Apr 2013
Posts: 25
If anyone is still interested, this is my script from ~2 years ago.

Code:
v1 = DGSource("LOTR1P1.dgi")
v2 = DGSource("LOTR1P2.dgi")

a1 = NicDTSSource("p1.dtsma")
a2 = NicDTSSource("p2.dtsma")

p1 = AudioDub(v1, a1).trim(0, 151968, true)
p2 = AudioDub(v2, a2).trim(48, 0, true)

p1+p2

Crop(0, 140, -0, -140)
Batch script for audio:
Code:
ffmpeg -i "%~nx1" -c:a flac "%~n1.trimmed.flac"
eac3to "%~n1.trimmed.flac" "%~n1.ac3"
del "%~n1.trimmed.flac"
anonymlol is offline   Reply With Quote