View Single Post
Old 20th March 2019, 19:06   #22  |  Link
hello_hello
Registered User
 
Join Date: Mar 2011
Posts: 4,823
Here's some silliness I came up with for cleaning up the problem scene in the PAL version. I don't know how long it stays that way as I only have the short sample domator uploaded. It doesn't fix it completely, but you'd probably have to hunt for what's left to notice it.

VTS_02_1.demuxed.mkv

Code:
LoadPlugin("C:\Program Files\MeGUI\tools\dgindex\DGDecode.dll")
mpeg2source("D:\VTS_02_1.demuxed.d2v")

A = Last
B = A.TFM().AssumeFPS(24000,1001)
C = A.TFM(pp=2).AssumeFPS(24000,1001)
D = A.TDeint(mode=1).SelectOdd().AssumeFPS(24000,1001)

B.Trim(0,292) ++ \
D.Trim(293,293) ++ \
B.Trim(294,723) ++ \
B.Trim(723,723) ++ \
C.Trim(725,807) ++ \
D.Trim(808,965) ++ \
C.Trim(966,966) ++ \
D.Trim(967,0)

QTGMC(InputType=1, EzDenoise=1)
crop(16, 6, -14, -6)
Spline36Resize(704,528)
Gradfun3()
Edit: Changed the script to remove the part that effectively wasn't doing anything


Last edited by hello_hello; 20th March 2019 at 21:24.
hello_hello is offline   Reply With Quote