I have a 320x240, 30fps poor quality MPEG1 videoclip and wanted to convert it into 352x240 NTSC MPEG2 .
I used the following avs script:
Code:
MPEGSource("Video.mpg")
AssumeFPS(30)
undot()
asharp(1, 4,hqbf=true)
Convolution3D(1, 6, 12, 6, 8, 2.8, 0)
MergeChroma(blur(1.5))
MergeLuma(blur(0.1))
converttorgb()
However when I fed the avs into Virtualdub and TMPGEnc Plus, the number of frames appeared about half of what it should be. Worse still, there were many color patches on the actress's face and in the dark background and these patches are not there in the original MPEG.
I have to admit that I am new to avisynth and I copied & modified the above script from this forum. I used AVS becoz I wanted to sharpen and de-noise the clip a bit.
Could someone advise me what I have done wrong and how to correct them.