flebber
12th May 2008, 08:41
Hi
This is my first ever time at using Avisynth. I have been experimenting with aviemux and virtualdub but just couldn't get the result I wanted. So I am trying avisynth, to use a few filters and clean up vhs captures I have.
So I created this script - as much to learn as acheive the end result.
LoadPlugin("C:\DGIndex\DGDecode.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Convolution3DYV12.dll")
MPEG2Source ("C:\WinFast WorkArea\Patience.d2v")
video=MPEG2Source ("C:\WinFast WorkArea\Patience.d2v")
Convolution3d (preset="movieHQ")
LanczosResize(496,304)
audio=WavSource("C:\WinFast WorkArea\Patience.wav")
SSRC(44100)
AudioDub(video, audio)
However the output result of this ( I load the avs file into virtualdub and use jobcontrol to execute) is large the original mpeg size is 263Mb and ends up 1.97Gb. It also ends up unplayable. ( Not playable in winamp or mplayer )
What I want is to remove the noise from the video, I plan to encode to X264 for final file, I am not worried though whether the avisynth process converts the mpeg over to avi or not as I plan to go x264 as my encode and avidemux does this part well.
This is my first ever time at using Avisynth. I have been experimenting with aviemux and virtualdub but just couldn't get the result I wanted. So I am trying avisynth, to use a few filters and clean up vhs captures I have.
So I created this script - as much to learn as acheive the end result.
LoadPlugin("C:\DGIndex\DGDecode.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Convolution3DYV12.dll")
MPEG2Source ("C:\WinFast WorkArea\Patience.d2v")
video=MPEG2Source ("C:\WinFast WorkArea\Patience.d2v")
Convolution3d (preset="movieHQ")
LanczosResize(496,304)
audio=WavSource("C:\WinFast WorkArea\Patience.wav")
SSRC(44100)
AudioDub(video, audio)
However the output result of this ( I load the avs file into virtualdub and use jobcontrol to execute) is large the original mpeg size is 263Mb and ends up 1.97Gb. It also ends up unplayable. ( Not playable in winamp or mplayer )
What I want is to remove the noise from the video, I plan to encode to X264 for final file, I am not worried though whether the avisynth process converts the mpeg over to avi or not as I plan to go x264 as my encode and avidemux does this part well.