PDA

View Full Version : CCE-SP tweaking for VCD encoding ?


ookzDVD
26th January 2004, 02:48
Is there any option which can I set to improve the result for
VCD encoding (NTSC, 29.97fps), the source is pure interlaced
DVD which deinterlaced use TompMoComp(1,5,1)?

PS.
I usually use the default profile, and the result is not bad :)
compared with TMPGEnc result, the CCE has better picture on the
fast moving action scene.

[edit]
I use CCE-SP 2.67.00.23

Thank you.

Boulder
26th January 2004, 10:55
A bit off topic, but this might provide you with a progressive 23.976fps clip to get a lot better quality:


mpeg2Source("path\clip.d2v")
dgbob()
converttoyuy2().convert60ito24p(2,0).converttoyv12()

############### the function #############
#
function convert60ito24p (clip video, int mode, int offset)
{
work = assumefieldbased(video)
out = (mode==2) ? interleave(
\selectevery(
\layer(trim(work, 1, 0),
\layer(work, trim(work, 2, 0), "fast"),
\"fast"), 5, 0 + offset),
\selectevery(
\layer(work, trim(work, 1, 0), "fast"), 5, 3 + offset)) :
\ (mode==1) ? interleave(
\selectevery(trim(work, 1, 0), 5, 0 + offset),
\selectevery(layer(work, trim(work, 1, 0), "fast"), 5, 3 + offset)) :
\ (mode==0) ? selectevery(work, 5, 1 + offset, 4 + offset) : work
assumeframebased(out)
}
#################################


More information here : http://home.arcor.de/scharfis_brain/

ookzDVD
27th January 2004, 02:29
@Boulder,

Thank you for the tips.
Anyway I'm satisfied with TompMoComp result atm.

But I'll try your tips,
it design to be working with PURE INTERLACED NTSC material
isn't it ?

Thank you.

Boulder
31st January 2004, 09:53
Originally posted by ookzDVD

But I'll try your tips,
it design to be working with PURE INTERLACED NTSC material
isn't it ?


(sorry for the delay)

That's correct. You'll probably need to fiddle with the mode value with some material but mode=2 should give the best results.