PDA

View Full Version : LotR Fellowship to 1 mkv


LordTrace
27th March 2007, 15:36
I'm trying to take both discs and merge them into one to put in a DVD5 sized MKV container

XviD 2500ish
Ac3

First off i have tryed this years ago and never had the patience to get it working right. The second half is always out of sync....

This time around i have found the blank frames that are causing this and am trying to cut them out.

here's my script...

# Created with Gordian Knot
#
# http://gknot.doom9.org

# PLUGINS
LoadPlugin("C:\PROGRA~1\GORDIA~1\DGMPGDec\DGDecode.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\decomb.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\KernelDeInt.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\UnDot.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\dgbob.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\Convolution3d.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\FluxSmooth.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\TomsMoComp.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\VSFilter.dll")
#LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\SimpleResize.dll")

# SOURCE
mpeg2source("D:\TEMP\Fellowship\FellowshipEE.d2v")

# TRIM
Trim(0,151919)+Trim(151925,0)

# IVTC
#Telecide(order=1,guide=1).Decimate()
# or use
#IVTC(44,11,95)
#GreedyHMA(1,0,4,0,0,0,0,0)

# DEINTERLACING (1)
#FieldDeinterlace()
#FieldDeinterlace(blend=false)
#TomsMoComp(1,5,1)

# DEINTERLACING (2)
#KernelDeInt(order=1,sharp=true)
# or maybe
#DGBob(order=1,mode=0)

# DEINTERLACING (3) - special requests
#GreedyHMA(1,0,0,0,0,0,0,0)
#Telecide()
#SeparateFields()

# CROPPING
crop(6,60,708,356)

# SUBTITLES
#VobSub("FileName")

# RESIZING
LanczosResize(720,304)

# DENOISING: choose one combination (or none)
Undot()

# 1) little noise
#Temporalsoften(2,3,3,mode=2,scenechange=6)
#mergechroma(blur(1.3))
#FluxSmoothST(5,7)

# 2) medium noise
#Temporalsoften(3,5,5,mode=2,scenechange=10)
#Convolution3d("moviehq")
#FluxSmoothST(7,7)

# 3) heavy noise
#Temporalsoften(4,8,8,mode=2,scenechange=10)
#Convolution3d("movielq")
#FluxSmoothST(10,15)

# BORDERS
#AddBorders(left,top,right,bottom)

# COMPRESSIBILITY CHECK
# !!!!Snip Size now has to be 14 for use in GKnot!
#SelectRangeEvery(280,14)

# FOOL CCEnc
#empty = BlankClip()
#AudioDub(last,empty)


I played/previewed it in MPC and the second half seems just a touch out of sync still .. weird because i am positive i am cutting the right frames (found in vdub). Joining method used was DVD2AVI "add" command, with each DVD's vob files in separate folders. This is the formula i used to trim the black frames.

Trim(0,last frame of disc 1)+Trim(first frame of disc 2,0)

Running the encode anyway to see ... Anyone have any ideas?

LordTrace
28th March 2007, 05:33
Was like the avs .... 2nd half was just a teeny tiny bit out of sync. :(

EDIT: Wow .. you need to take alot of frames out to get it to sync !

# TRIM
Trim(0,151919)+Trim(151932,0)

Sucks that there is no way to really know if the sync is exactly like the DVD .. pretty much guess and eye work :(