SilSic
7th August 2015, 17:05
Hi,
the script below doesn't work. It only shows video2, and video1 isn't to see at all. Figure out main and pip are both clip2, but how come?
Tried a lot spending 5 days in a row for this whole script but I don't get it working. Google is no help or I'm just to blind. SetMTMode is also very disappointing only 6,3 works without flaw.
Can anyone fix that?
Thanks in advance
SetMTMode(6,3)
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\TUnsharp.dll")
LoadPlugin("D:\plugins\masktools2.dll")
LoadPlugin("D:\plugins\UnFilter.dll")
Import("D:\plugins\FastLineDarken 1.4x MT MOD.avsi")
LoadPlugin("D:\plugins\MSharpen.dll")
Import("D:\plugins\PanoramaWR2.avs")
clip1=DirectShowSource("Video1.mkv")
clip2=DirectShowSource("Video2.avi",audio=false).convertfps(29.976)
SetMTMode(6,3)
FastLineDarkenmod(clip1, strength=70,thinning=75)
SetMTMode(3,3)
MSharpen(clip1,threshold=39, strength=40,mask=false, highq=true)
PanoramaWR2(clip1,1024,480, Strength=0.900, AxisShare=0.667)
SetMTMode(6,3)
aWarp4(Spline36Resize(clip1,width*4, height*4, 0.375, 0.375), aSobel().aBlur(), depth=4)
AssumeTFF(clip1)
Interp = nnedi(clip1, field=1)
Deinted=TDeint(clip1,order=1,field=1,type=1,edeint=Interp,emask=TMM(order=1,field=1))
TFM(clip1,mode=6,order=1,PP=7,slow=2,mChroma=true,Clip2=Deinted)
TDecimate(clip1,mode=1)
FastLineDarkenmod(clip2, strength=70,thinning=75)
SetMTMode(3,3)
MSharpen(clip2,threshold=39, strength=40,mask=false, highq=true)
PanoramaWR2(clip2,1024,480, Strength=0.900, AxisShare=0.667)
SetMTMode(6,3)
aWarp4(Spline36Resize(clip2,width*4, height*4, 0.375, 0.375), aSobel().aBlur(), depth=4)
AssumeTFF(clip2)
Interp = nnedi(clip2, field=1)
Deinted=TDeint(clip2,order=1,field=1,type=1,edeint=Interp,emask=TMM(order=1,field=1))
TFM(clip2,mode=6,order=1,PP=7,slow=2,mChroma=true,Clip2=Deinted)
TDecimate(clip2,mode=1)
main=clip1
pip=clip2
main=bicubicresize(720,480).ConvertToYUY2()
pip=bicubicresize(720,480).Crop(0, 460, 0, 0).ConvertToYUY2()
Layer(main,pip,"add",250,1,460).bicubicresize(720,480)
the script below doesn't work. It only shows video2, and video1 isn't to see at all. Figure out main and pip are both clip2, but how come?
Tried a lot spending 5 days in a row for this whole script but I don't get it working. Google is no help or I'm just to blind. SetMTMode is also very disappointing only 6,3 works without flaw.
Can anyone fix that?
Thanks in advance
SetMTMode(6,3)
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\TUnsharp.dll")
LoadPlugin("D:\plugins\masktools2.dll")
LoadPlugin("D:\plugins\UnFilter.dll")
Import("D:\plugins\FastLineDarken 1.4x MT MOD.avsi")
LoadPlugin("D:\plugins\MSharpen.dll")
Import("D:\plugins\PanoramaWR2.avs")
clip1=DirectShowSource("Video1.mkv")
clip2=DirectShowSource("Video2.avi",audio=false).convertfps(29.976)
SetMTMode(6,3)
FastLineDarkenmod(clip1, strength=70,thinning=75)
SetMTMode(3,3)
MSharpen(clip1,threshold=39, strength=40,mask=false, highq=true)
PanoramaWR2(clip1,1024,480, Strength=0.900, AxisShare=0.667)
SetMTMode(6,3)
aWarp4(Spline36Resize(clip1,width*4, height*4, 0.375, 0.375), aSobel().aBlur(), depth=4)
AssumeTFF(clip1)
Interp = nnedi(clip1, field=1)
Deinted=TDeint(clip1,order=1,field=1,type=1,edeint=Interp,emask=TMM(order=1,field=1))
TFM(clip1,mode=6,order=1,PP=7,slow=2,mChroma=true,Clip2=Deinted)
TDecimate(clip1,mode=1)
FastLineDarkenmod(clip2, strength=70,thinning=75)
SetMTMode(3,3)
MSharpen(clip2,threshold=39, strength=40,mask=false, highq=true)
PanoramaWR2(clip2,1024,480, Strength=0.900, AxisShare=0.667)
SetMTMode(6,3)
aWarp4(Spline36Resize(clip2,width*4, height*4, 0.375, 0.375), aSobel().aBlur(), depth=4)
AssumeTFF(clip2)
Interp = nnedi(clip2, field=1)
Deinted=TDeint(clip2,order=1,field=1,type=1,edeint=Interp,emask=TMM(order=1,field=1))
TFM(clip2,mode=6,order=1,PP=7,slow=2,mChroma=true,Clip2=Deinted)
TDecimate(clip2,mode=1)
main=clip1
pip=clip2
main=bicubicresize(720,480).ConvertToYUY2()
pip=bicubicresize(720,480).Crop(0, 460, 0, 0).ConvertToYUY2()
Layer(main,pip,"add",250,1,460).bicubicresize(720,480)