Quote:
Originally Posted by kwag
Quote:
Originally Posted by nicksteel
What minimum resolution in VirtualVcr would you recommend for KVCD 352x480 Plus(modified to 480x480 in TMPGEnc)?
|
At least 480x480 Quote:
The disk space required by Huffy is quite large (I have 70GB available). If I can arrive at a successful capture senario, I'll opt for an additional 200GB drive.
|
The larger, the better! Make sure it's at least 7,200Rpm
-kwag:
|
A couple more questions. When I process a full screen, I use:
aviSource("g:\rob.avi")
#fielddeinterlace()
telecide()
decimate()
LegalClip()
#GripCrop(480, 480, dest_anamorphic=false)
#GripSize(resizer="BicubicResize")
STMedianFilter(10, 50, 0, 0, 10, 50)
unfilter(50,50)
temporalsmoother(1,2)
mergechroma(blur(1.58 ))
mergeluma(blur(0.3))
#GripBorders()
#LetterBox(16, 16, 16, 16)
LegalClip()
Sampler(length=24)
##MPEG size = ((Total frames/MovieTimeInMinutes)/24) * MPEG sample file size ##
When I process a widescreen, I use:
aviSource("g:\rob.avi")
#fielddeinterlace()
telecide()
decimate()
LegalClip()
GripCrop(480, 480, dest_anamorphic=false)
GripSize(resizer="BicubicResize")
STMedianFilter(10, 50, 0, 0, 10, 50)
unfilter(50,50)
temporalsmoother(1,2)
mergechroma(blur(1.58 ))
mergeluma(blur(0.3))
GripBorders()
LetterBox(16, 16, 16, 16)
LegalClip()
Sampler(length=24)
##MPEG size = ((Total frames/MovieTimeInMinutes)/24) * MPEG sample file size ##

Am I doing things properly for TV capure source?

Under what circumstances would I use Fielddeinterlace() instead of Telecide() and Decimate()? I've read posts and referenced documents, but am still a bit unsure.

When using the above scripts and processing 352x480 Plus modified to 480x480 at 29.97fps, I also change to interlaced from 3:2 pulldown, as TMPGEnc won't process 29.97fps with pulldown. Is this the right way?