Tio
25th September 2005, 02:22
My HiDef recordings converted for PC/AVI viewing aren't as clean and crisp as I expect them to be. I use the following avs script in V'Dub:
--------------------
video = MPEG2Source("C:\#working\clip-446ms.d2v")
audio = DirectShowSource("C:\#working\clip-446ms.ac3")
audio = audio.Amplify(12)
audio = audio.DelayAudio(-0.446)
AudioDub(video,audio)
Trim(78,2558)
#SelectEven().Decimate() #use with 720p script#
Telecide(order=1,guide=1,post=2,vthresh=30).Decimate() #use with 108*i script#
ColorYUV(off_y=0, gain_y=20).Levels(0,1.0,255,0,255).Tweak(Hue=0,Sat=1.0,Bright=0.0,Cont=1.0)
#crop(0,0,-0,-8,true) #use with 1088i script#
LanczosResize(1280,720) #use with 108*i script#
converttoyv12()
Convolution3d(preset="movieHQ")
LimitedSharpen2(ss_x=1.5,ss_y=1.5,Smode=3,strength=100)
logo = JDL_ImageSource("C:\Program Files\Video Editing Tools\AviSynth_Scripts/logo-1280.png", fps=FrameRate())
logoMask = JDL_ImageSource("C:\Program Files\Video Editing Tools\AviSynth_Scripts/logo-1280-mask.png", fps=FrameRate())
Overlay(logo,
\ x=10,
\ y=10,
\ mask=logoMask, opacity=0.20)
-------------------
I do use seperate scripts but combined them above for the sake of space.
I'm hoping to get advice on what, if anything, may be wrong with the script above in regards to proper filter implementation and order. Any suggestions greatly appreciated. All clips are converted to XviD/1280x720/mp3 for viewing on the PC via any media player.
Thanks
--------------------
video = MPEG2Source("C:\#working\clip-446ms.d2v")
audio = DirectShowSource("C:\#working\clip-446ms.ac3")
audio = audio.Amplify(12)
audio = audio.DelayAudio(-0.446)
AudioDub(video,audio)
Trim(78,2558)
#SelectEven().Decimate() #use with 720p script#
Telecide(order=1,guide=1,post=2,vthresh=30).Decimate() #use with 108*i script#
ColorYUV(off_y=0, gain_y=20).Levels(0,1.0,255,0,255).Tweak(Hue=0,Sat=1.0,Bright=0.0,Cont=1.0)
#crop(0,0,-0,-8,true) #use with 1088i script#
LanczosResize(1280,720) #use with 108*i script#
converttoyv12()
Convolution3d(preset="movieHQ")
LimitedSharpen2(ss_x=1.5,ss_y=1.5,Smode=3,strength=100)
logo = JDL_ImageSource("C:\Program Files\Video Editing Tools\AviSynth_Scripts/logo-1280.png", fps=FrameRate())
logoMask = JDL_ImageSource("C:\Program Files\Video Editing Tools\AviSynth_Scripts/logo-1280-mask.png", fps=FrameRate())
Overlay(logo,
\ x=10,
\ y=10,
\ mask=logoMask, opacity=0.20)
-------------------
I do use seperate scripts but combined them above for the sake of space.
I'm hoping to get advice on what, if anything, may be wrong with the script above in regards to proper filter implementation and order. Any suggestions greatly appreciated. All clips are converted to XviD/1280x720/mp3 for viewing on the PC via any media player.
Thanks