Over the weekend I've started playing around with avisynth and I would like to know if I'm doing anything wrong. I'm using my WinTV PVR-150 to capture 720x576 picvideo mjpeg with the compressor set to 19. I then use the following basic avisynth script to denoise and resize -
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Convolution3d.dll")
DirectshowSource("capture.avi")
AssumeTFF()
SeparateFields()
odd=SelectOdd.Convolution3d (preset="vhsBQ")
evn=SelectEven.Convolution3d (preset="vhsBQ")
Interleave(evn,odd)
Weave()
Spline36Resize (352,576)
Then I use frameserve to graphedit and convert to dvd mpeg using the ATI Avivo codec (very fast mpeg-1/2/4 WMV9 and H.264 codec)
Am I doing anything wrong in the script? What is the best resizer in avisynth for downscaling from 720x576?
+ Reply to Thread
Results 1 to 3 of 3
-
-
Wrong? Only if you're not getting the results you want.
Things I might change...
AVISource() instead if DirectShowSource() if the source is Type2.(Edit: Sorry, missed where you're using mjpeg, not DV-AVI. Ignore this.)
I personally would use Lanczos4Resize() for resizing because IMO it does a better job both ways than any other, and I would resize while the fields are split (although in your case it should be OK), but I don't know why you're resizing at all since you say you're encoding for DVD. I'm not familiar with graphedit or the encoder you mention so I can't comment on them other than to say if you're happy with the results, keep using them. If not, try HCEnc. IMO it does an excellent job and it's free."Shut up Wesley!" -- Captain Jean-Luc Picard
Buy My Books -
Convolution3d is an old plugin. Try some newer ones when you get comfortable.
Similar Threads
-
Getting started, I need to learn EVERYTHING
By hadoq in forum Newbie / General discussionsReplies: 27Last Post: 15th Mar 2011, 00:36 -
How to get Started
By Skylark157 in forum Newbie / General discussionsReplies: 2Last Post: 15th Dec 2009, 18:52 -
M2TS files have started playing slow after installing Nero.
By inano in forum Blu-ray RippingReplies: 7Last Post: 8th Dec 2008, 20:03 -
Getting Started
By CaseyJones in forum MacReplies: 11Last Post: 31st Mar 2008, 17:35 -
Avitricks getting started
By arcoiris99 in forum Newbie / General discussionsReplies: 1Last Post: 31st Oct 2007, 10:19