Olá Pessoal
Agradeço a todos que puderem ajudar
Estou tentando fazer o meu primeiro KSVCD, mas preciso roda-lo apenas em um micro, aparecem umas margens pretas na horizontal e vertical o scripit e este:
#--- início do script - copie a partir daqui e cole em um arquivo .AVS---------------------
################################################## #################
# Usando Filtragem Motion Adaptive do Kawag para melhr compressão #
################################################## #################
## DLL Section ##
# Em cada uma das 6 linhas abaixo deve estar o endereço da sua pasta de plugins do avisynth
LoadPlugin("C:\KVCD\AviSynth\plugins\MPEG2Dec3.dll ")
LoadPlugin("C:\KVCD\AviSynth\plugins\GripFit_yv12. dll")
LoadPlugin("C:\KVCD\AviSynth\plugins\STMedianFilte r.dll")
LoadPlugin("C:\KVCD\AviSynth\plugins\asharp.dll")
LoadPlugin("C:\KVCD\AviSynth\plugins\unfilter.dll" )
LoadPlugin("C:\KVCD\AviSynth\plugins\undot.dll")
#
#
#
#
#
#
#
#
##############
# Parameters #
##############
myanamorphic=false # mude para false se no passo 6 você achou 4:3 ao invés de 16:9
m_width=352 #Use 720 ou 352 para KDVD, 528 ou 352 para K(S)VCD
#subtitle="VTS_01_0.sub" # Adicione um # no inicio desta linha se você não precisa
#de legendas, troque pelo nome do arquivo sub criado no passo
movie="c:\kvcd\ksvcd\projeto.d2v"
myoverscan=3# teste com valores de 0 a 3 para ver o máximo que você pode colocar
#aqui. Quanto maior melhor a qualidade, as valores muito grandes podem fazer sua TV
# mostrar bordas indesejáveis ao redor da imagem.
MaxTreshold = 1.50
nf = 0 # Current frame.
################
## Functions ###
################
function fmin( int f1, int f2) {
return ( f1<f2 ) ? f1 : f2
}
##########
# sCRIPT #
##########
MPEG2Source(movie)
#Resize, overscan and borders
#undot()
Limiter()
asharp(1, 4)
#GripCrop(m_width, 480, overscan=myoverscan,source_anamorphic=myanamorphic ,dest_anamorphic=false)
#GripSize(resizer="BicubicResize")
#STMedianFilter(8, 32, 0, 0 )
MergeChroma(blur(MaxTreshold))
MergeLuma(blur(0.1))
## Linear Motion Adaptive Filtering ##
#
# ( Portions from AviSynth's manual ) - This will apply temporalsoften to
# very static scenes, and apply variable blur on moving scenes.
# We also assign a variable - and this is why a line break is inserted:
SwitchThreshold = (Width<=352) ? 4 : (Width<=480) ? 3 : 2
ScriptClip("nf = YDifferenceToNext()"+chr(13)+ "nf >= SwitchThreshold ? \
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()
#Subtitles #
############
#VobSub(subtitle) # Adicione um # no inicio desta linha se você não precisa de
#legendas
converttoyuy2()
#Sampler(length=24) # retire o # do inicio dessa linha quando for criar a amostra no tmpgenc
#--------------------------------------- fim do script ---------------------
o jogo da velha(#), nos lugares onde assinalei em vermelho.
Realmente as bordas horizontais do meu ksvcd, sumiram mas as verticais continuam!!!
O que fazer para tirar as margens verticais???
Desde já agradeço a atenção.
Grato
João Nova
|