digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Avisynth Scripting (http://www.digitalfaq.com/archives/avisynth/)
-   -   Avisynth: HDTV source to KDVD? (http://www.digitalfaq.com/archives/avisynth/14079-avisynth-hdtv-source.html)

TBO 01-20-2006 10:59 AM

Avisynth: HDTV source to KDVD?
 
Hey

I havent used kvcd and kdvd for some years now,and dont remember much of it.So I was wondering if someone could make me a script for this conversion? I want to do full 720x480 ntsc dvd.

1280x720P
NTSC 59.940
AR = 16:9

Thanks :wink:

Dialhot 01-20-2006 11:06 AM

Hi,

You can read a little about that here :
http://www.kvcd.net/forum/viewtopic....highlight=hdtv

Sagittaire 01-21-2006 01:26 PM

720 ts 59.940 fps file use duplicate frame aa bbb cc ddd. You can simply drop duplicate frame in avs script with selectevery ...

SelectEvery(clip, 5, 1, 4) for exemple ...

After you make resize 1280*720@720*480 ...


Be carefull source are hardware MPEG2 MP@HL encoding. Very bad quality in very high motion part with high quant for IFrame ...

cw_uk 01-31-2006 12:29 PM

Code:

Mpeg2Source(" ")
GripCrop(720,480,overscan=0, source_anamorphic=true, dest_anamorphic=false)
GripSize(resizer="Lanczos4Resize")

SelectEven()
Decimate(Cycle=5)

Undot()
Asharp(1,0,1,True)
STMedianFilter(3, 3, 1, 1 )
MergeChroma(blur(1.5))
MergeLuma(blur(0.1))
ScriptClip(" nf = YDifferenceToNext()" +chr(13)+ "unfilter( -(fmin(round(nf)*2, 100)), \
-(fmin(round(nf)*2, 100)) ).TemporalSoften( fmin( round(2/nf), 6), round(1/nf) , round(3/nf) , 1, 1)  ")

GripBorders()

function fmin( int f1, int f2) {
  return ( f1<f2 ) ? f1 : f2
}

thats what i use for cdr's sized files for a dvdr though maybe something a bit lighter.

Code:

Mpeg2Source(" ")
GripCrop(720,480,overscan=0, source_anamorphic=true, dest_anamorphic=false)
GripSize(resizer="Lanczos4Resize")

SelectEven()
Decimate(Cycle=5)
Undot().Deen()
GripBorders()



All times are GMT -5. The time now is 10:49 AM  —  vBulletin © Jelsoft Enterprises Ltd

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.