Quantcast KVCD: the Optimal Order of the Filters in the Script? - digitalFAQ.com Forums [Archives]
  #1  
09-07-2003, 02:39 PM
NismoSX NismoSX is offline
Free Member
 
Join Date: Jul 2003
Posts: 23
Thanks: 0
Thanked 0 Times in 0 Posts
Hi! I'm using the following script for DivX movies, with great results.
But I'm not quite sure of the optimal order of the filters in the script.
So if anyone could help me out here, I would be very thankful.

Code:
LoadPlugin("C:\DVD\Filters\2.5\MPEG2Dec3.dll")
LoadPlugin("C:\DVD\Filters\2.5\STMedianFilter.dll")
LoadPlugin("C:\DVD\Filters\2.5\asharp.dll")
LoadPlugin("C:\DVD\Filters\2.5\unfilter.dll")
LoadPlugin("C:\DVD\Filters\2.5\undot.dll")
LoadPlugin("C:\DVD\Filters\2.5\DCTFilter.dll")
LoadPlugin("C:\DVD\Filters\2.5\TemporalCleaner.dll")
LoadPlugin("C:\DVD\Filters\2.5\VSFilter.dll")
LoadPlugin("C:\DVD\Filters\2.5\LoadPluginEX.dll")
LoadPlugin("C:\DVD\Filters\2.0\DustV5.dll")

AviSource("Movie.avi")
KillAudio()

BlindPP()
undot()
unfilter(50,50)
asharp(1,4)
BicubicResize(480,272,0,0.6,0,0,640,272)
STMedianFilter(8,32,0,0)
ConvertToYUY2()
SpaceDust()
ConvertToYV12()
TemporalCleaner(round(6), round(11))
AddBorders(0,104,0,104)
TextSub("Movie.srt")
DctFilter(1,1,1,1,1,1,.5,0)
LetterBox(0,0,16,16)
Reply With Quote
Someday, 12:01 PM
admin's Avatar
Site Staff / Ad Manager
 
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
  #2  
09-07-2003, 03:08 PM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Doing mutilple "convertTo" isn't a good idea. If you want to use SpaceDust its better to do like this :

Code:
AviSource("Movie.avi",false)  :arrow: equivalent to "killaudio"
BlindPP()
undot()
unfilter(50,50)
# asharp(1,4) :arrow: useless, you already have unfilter that sharpens !
BicubicResize(480,272,0,0.6,0,0,640,272)
STMedianFilter(8,32,0,0)
TemporalCleaner(6, 11)
DctFilter(1,1,1,1,1,1,.5,0)
ConvertToYUY2()
SpaceDust()
AddBorders(0,104,0,104)
TextSub("Movie.srt")
LetterBox(0,0,16,16)
Note: put all your dll in the "plugins" directory of avs2.52 and remove all thes ugly "loadplugin" lines

Note2: look at the sticky post I did today with optimal scripts. They will give very good results and more quicly than the one you use.
Reply With Quote
  #3  
09-07-2003, 03:23 PM
NismoSX NismoSX is offline
Free Member
 
Join Date: Jul 2003
Posts: 23
Thanks: 0
Thanked 0 Times in 0 Posts
Ok, thanks! Will try your suggestions and take a look at the optimal scripts.
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
Avisynth filters order important? Dialhot Avisynth Scripting 6 07-06-2004 06:17 PM
Mencoder: Optimal Script with mencoder filters vmesquita Video Encoding and Conversion 38 04-14-2004 09:55 AM
KVCD: Optimal script or ma script? vdk_au Video Encoding and Conversion 3 01-29-2004 07:29 AM
new KVCD script candidate for optimal script! Dialhot Video Encoding and Conversion 12 10-11-2003 02:09 PM
Avisynth: Order of Filters? LadyMiles Avisynth Scripting 4 11-09-2002 07:52 PM

Thread Tools



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