digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Avisynth Scripting (http://www.digitalfaq.com/archives/avisynth/)
-   -   Avisynth: DVD to KVCD sCript for a Pentium II ? (http://www.digitalfaq.com/archives/avisynth/12040-avisynth-dvd-kvcd.html)

spacelord 09-09-2004 06:47 PM

Avisynth: DVD to KVCD sCript for a Pentium II ?
 
Hi everybody, since a long time ago i convert divx and xvid videos with avisynth and TMPGenc to kvcd very well with this script, without the filters Gipfit, ATC, temporalsoften, etc, becouse these need MMX2 and/or SSE and/or SSE2 wich are not included in a Pentium 2 procesor (olny have MMX) just like my pc.
This modified avisynth script always works to do greats codifications with my Pentium 2 PC:

Quote:

#FILTERS TO USE
LoadPlugin("D:\VIDEOEDICION\FILTROS\MPEG2Dec3.dll" )
LoadPlugin("D:\VIDEOEDICION\FILTROS\Blockbuster.dl l")
#SUBTITLES FILTER
LoadPlugin("D:\VIDEOEDICION\FILTROS\VSFilter.dll")
#MOVIE
AVISource("D:\VCD\ENTERPRISE\076a25000.avi",false)

#PIXEL
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)

#RESIZE
LanczosResize(336, 206, 7, 0, 418, 240)

#ADD BORDERS
AddBorders(8, 41, 8, 41)

#SUBTITLES
TextSub("D:\VCD\ENTERPRISE\076a25000.ssa")

converttoyuy2()
Now i want to convert DVDs (.vob) to KVCD with Avisynth and TMPGenc but the script in this forum use severals filters not compatible with a Pentium 2 (becouse need MMX2, SSE and SSE2) like the following 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
}

#
####

Becouse of this i need a new script to convert DVDs without the filters (wich need MMX2, SSE and SSE2) or replace them by others who no need MMX2, SSE and SSE2 (only MMX) like my AVI to KVCD script.
This script is possible? Already exist any script to Pentium 2? if anybody can helpme please respond this thread.

Thanks!!!


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