Ok I got the .vob files and the .ifo file from my DVD.
I made the .d2v file with DVD2AVI.
Now comes the hard part - the script. Enchanter showed me his template in another post, and I followed it along with the plugins he uses.
LoadPlugin("C:\Rip Tools\Avisynth Plugins\MPEG2DEC.dll")
LoadPlugin("C:\Rip Tools\Avisynth Plugins\DecombLegacy.dll")
LoadPlugin("C:\Rip Tools\Avisynth Plugins\Convolution3D.dll")
LoadPlugin("C:\Rip Tools\Avisynth Plugins\MSharpen.dll")
LoadPlugin("C:\Rip Tools\Avisynth Plugins\Tweak.dll")
LoadPlugin("C:\WINDOWS\System32\vobsub.dll")
mpeg2source("C:\Files\DVD Rips\Sum_Of_All_Fears\VIDEO_TS\d2a\SumOfAllFears.d 2v")
Telecide()
Decimate(cycle=5)
#The above 2 lines are for Inverse Telecining originally-FILM NTSC materials#
Convolution3d(0, 3, 4, 3, 4, 2.8, 0)
crop(0,61,2,66)
lanczosresize(592,240)
VobSub("C:\Files\DVD Rips\Sum_Of_All_Fears\VIDEO_TS\VTS_04_0.IFO")
Tweak(1)
I'm just messing with values, but that's what I'm using now to try out. It shows up as green and purple rectangles in WMP8 LOL
I know I'm not doing it right.....
I installed AVISynth 2.07, but I don't know how to get VirtualDub to load the plugins for AVISynth, like the MPEG2 one that lets me open .d2v files in VirtualDub. How do I do this?
Also, what are some good values for the script up there - like what is the format for entering the crop values? How do I enter the aspect ratio? What do I put for Telecide()? What do I put for convolution3d?
I'm learning folks, and my brain is about to fry here. Please tell me what to do next, thanks!
I made the .d2v file with DVD2AVI.
Now comes the hard part - the script. Enchanter showed me his template in another post, and I followed it along with the plugins he uses.
LoadPlugin("C:\Rip Tools\Avisynth Plugins\MPEG2DEC.dll")
LoadPlugin("C:\Rip Tools\Avisynth Plugins\DecombLegacy.dll")
LoadPlugin("C:\Rip Tools\Avisynth Plugins\Convolution3D.dll")
LoadPlugin("C:\Rip Tools\Avisynth Plugins\MSharpen.dll")
LoadPlugin("C:\Rip Tools\Avisynth Plugins\Tweak.dll")
LoadPlugin("C:\WINDOWS\System32\vobsub.dll")
mpeg2source("C:\Files\DVD Rips\Sum_Of_All_Fears\VIDEO_TS\d2a\SumOfAllFears.d 2v")
Telecide()
Decimate(cycle=5)
#The above 2 lines are for Inverse Telecining originally-FILM NTSC materials#
Convolution3d(0, 3, 4, 3, 4, 2.8, 0)
crop(0,61,2,66)
lanczosresize(592,240)
VobSub("C:\Files\DVD Rips\Sum_Of_All_Fears\VIDEO_TS\VTS_04_0.IFO")
Tweak(1)
I'm just messing with values, but that's what I'm using now to try out. It shows up as green and purple rectangles in WMP8 LOL
I know I'm not doing it right.....
I installed AVISynth 2.07, but I don't know how to get VirtualDub to load the plugins for AVISynth, like the MPEG2 one that lets me open .d2v files in VirtualDub. How do I do this?
Also, what are some good values for the script up there - like what is the format for entering the crop values? How do I enter the aspect ratio? What do I put for Telecide()? What do I put for convolution3d?
I'm learning folks, and my brain is about to fry here. Please tell me what to do next, thanks!
Comment