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/)
-   -   DVD to KVCD Script (avisynth) para Pentium 2 (http://www.digitalfaq.com/archives/espanol/11994-dvd-kvcd-script.html)

spacelord 09-07-2004 08:19 PM

DVD to KVCD Script (avisynth) para Pentium 2
 
Hola todo el mundo, hace tiempo vengo pasando videos en divx y xvid con avisynth y TMPGenc a kvcd lo mas bien con este script, sin los filtros Gipfit, ATC, etc, ya que necesitan MMX2 y/o SSE y/o SSE2 los cuales no tiene una Pentium 2 (Solo MMX) como la mia.
Este script modificado siempre me sirvio para hacer unas buenas codificaciones con mi Pentium 2:

Quote:

#CARGA LOS FILTROS A USAR
LoadPlugin("D:\VIDEOEDICION\FILTROS\MPEG2Dec3.dll" )
LoadPlugin("D:\VIDEOEDICION\FILTROS\Blockbuster.dl l")
#CARGAR EL FILTRO DE LOS SUBTITULOS
LoadPlugin("D:\VIDEOEDICION\FILTROS\VSFilter.dll")
#CARGAR PELICULA
AVISource("D:\VCD\ENTERPRISE\076a25000.avi",false)

#ELIMINAR PIXELADO
Blockbuster(method="noise",detail_min=1,detail_max =8,variance=0.3,seed=5823)
Blockbuster(method="noise",detail_min=1,detail_max =10,variance=0.5,seed=5823)

#AJUSTAR TAMAÑO
LanczosResize(336, 206, 7, 0, 418, 240)

#AGREGAR BORDES
AddBorders(8, 41, 8, 41)

#CARGAR LOS SUBTITULOS
TextSub("D:\VCD\ENTERPRISE\076a25000.ssa")

converttoyuy2()
La cuestion es que ahora decidi empezar a pasar DVDs (.vob) a KVCD con Avisynth y TMPGenc pero el script que debo usar cuenta con varios de los filtros que no son compatibles con Pentium 2 (por usar MMX2, SSE y SSE2) como el siguiente script:


Quote:

For DVD and clean material ( for use ONLY with AviSynth 2.5x )
## Now with Linear Motion Adaptive Filtering ##
### Last updated on March 31, 2004 @15:44 GMT ###
Code:
## DLL Section ##
#
LoadPlugin("C:\Filters25\MPEG2Dec3.dll")
LoadPlugin("C:\Filters25\GripFit_YV12.dll")
LoadPlugin("C:\Filters25\STMedianFilter.dll")
LoadPlugin("C:\Filters25\asharp.dll")
LoadPlugin("C:\Filters25\unfilter.dll")
LoadPlugin("C:\Filters25\undot.dll")
#
####
## Main section and static filters ###
#
Mpeg2Source("Your_D2V_Source_Here")
#
undot()
asharp(1, 4)
GripCrop(Your_GripCrop_Parameters_Here)
GripSize(resizer="BicubicResize")
STMedianFilter(3, 3, 1, 1 )
MergeChroma(blur(1.5))
MergeLuma(blur(0.1))
#
#

## Linear Motion Adaptive Filtering ##
#
# ( Portions from AviSynth's manual )
# This will apply variable temporalsoften
# and variable blur.
# Both filters are active at all times, and work inversely proportional to the
# activity, measured from current frame to next frame.

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()
#LetterBox( Your_Values_Here ) # Depends on situation. Use MovieStacker!

#
#
## Functions ###

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

#
####

Entonces necesito un Script para pasar DVDs que no cuente con esos filtros o los reemplace por otros que solo necesiten MMX como maximo, como ya tenia anteriormente.
Es posible hacer un script asi? existe alguno para Pentium 2? si alguien puede ayudarme se lo agredeceria mucho.

Saludos!!!


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