digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Convertir y Codificar Video (Español) (http://www.digitalfaq.com/archives/espanol/)
-   -   Problemas con el color. (http://www.digitalfaq.com/archives/espanol/4852-problemas-color.html)

alfbosie 08-02-2003 04:31 PM

Problemas con el color.
 
Muy buenas.
Estoy intentando hacer una primera prueba con el cqmatic, pero tengo un problema al cargar el fichero avs generado con el moviestacker en el tmpgenc. Aparentemente el avs abre bien, pero cuando hago un preview, los colores no se ven correctamente, las caras están con un color pálido azulado. Estoy usando el avisynth 2.5.2, y una de las plantillas del optimal script, pero no consigo solucionar el problema. Este es el script:
## DLL Section ##
#
LoadPlugin("C:\Programas\AviSynth 2.5\plugins\\MPEG2Dec3.dll")
LoadPlugin("C:\Programas\AviSynth 2.5\plugins\\GripFit_YV12.dll")
LoadPlugin("C:\Programas\AviSynth 2.5\plugins\\STMedianFilter.dll")
LoadPlugin("C:\Programas\AviSynth 2.5\plugins\\asharp.dll")
LoadPlugin("C:\Programas\AviSynth 2.5\plugins\\unfilter.dll")
LoadPlugin("C:\Programas\AviSynth 2.5\plugins\\undot.dll")
#
####

## Defined Variables and Constants ##
#
MaxTreshold = 1.50
nf = 0 # Current frame.
#
####

## Main section and static filters ###
#
AviSource("D:\Cross of iron.avi")
undot()
Limiter()
asharp(2, 4)
GripCrop(528, 576, overscan=2, source_anamorphic=false)
GripSize(resizer="BilinearResize")
TemporalCleaner()
BlockBuster(method="noise", detail_max=7, variance=0.3, seed=1)
STMedianFilter(8, 32, 0, 0 )
#MergeChroma(blur(MaxTreshold))
#MergeLuma(blur(0.2))
#
#

## 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:

ScriptClip("nf = YDifferenceToNext()"+chr(13)+ "nf >= 2 ? \
unfilter( -(fmin(round(nf)*2, 100)), -(fmin(round(nf)*2, 100)) ) : \
TemporalSoften( fmin( round(2/nf), 6), round(1/nf) , round(3/nf) ,0, 2) ")

#
#
#

GripBorders()
#LetterBox( Your_Values_Here ) # Depends on situation. Use MovieStacker!
Limiter()

#
#
## Functions ###

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

#
####

Por favor, si alguien sabe donde está el error, agradecería cualquier ayuda, porque a pesar de leer posts y manuales no acabo de pillarle el truco a esto.

Gracias

CaLaFaT 08-04-2003 12:57 AM

Re: Problemas con el color.
 
Quote:

Originally Posted by alfbosie
BlockBuster(method="noise", detail_max=7, variance=0.3, seed=1)

Hola alfbosie,
no se si sera la solución, pero si tu script es exactamente este te falta cargar la *.dll del blockbuster

LoadPlugin("C:\Programas\AviSynth 2.5\plugins\Blockbuster.dll")

y por lo que veo, no es el optimal+blockbuster, tambien utilizas el temporalcleaner, y tampoco tiene su *dll, yo te aconsejo que uses el MA script (optimal) tal cual, y si lo quieres modificar con el blockbuster añadele la *.dll , pero de todas formas si quieres codificar a la resolucion que pones, no es efectivo y menos a CQ, asi que tu mismo...


All times are GMT -5. The time now is 06:10 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.