digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Video Encoding and Conversion (http://www.digitalfaq.com/archives/encode/)
-   -   Latest optimal script for AVI to KVCD (http://www.digitalfaq.com/archives/encode/6470-latest-optimal-script.html)

Dialhot 11-02-2003 10:31 AM

Latest optimal script for AVI to KVCD
 
Here are all versions of the script, last one is supposed to be the best but I let the former ones if you wish to give them a try.

Note : you will need to have avs 2.52 and all necessary plugins into the directory "plugins" of avs.
(necessary plugins are : ATC, BlockBuster, Convolution3DYV12, DctFilter, Deen, Gripfit_YV12, Undot, mpeg2dec3 (for BlindPP))

Warning : script V4 and V3 need a source with both dimensions divisible by 16. If your source is not in this case, you can use "Addborders(0,0,right,bottom)" to adjust the size (the idea is to reach the next value that is divisible by 16. See example just after). Don't worry, this border will be removed by the gripcrop command.

Example : source is 636 * 477, you need to change it to 640 * 480 (640/16 = 40; 480/16 = 30). So just add this after the line Avisource :
Code:

AddBorders(0,0,4,3)
Don't forget to change WIDTH and HEIGHT according to your wishes.

Version 4
Code:

AviSource("PATH\NAME.avi",false)
BlindPP(cpu=4)
Blockbuster(method="noise",detail_min=1,detail_max=3,variance=0.1,seed=1)
Convolution3D(1, 6, 12, 6, 8, 2.8, 0)
GripCrop(WIDTH, HEIGHT, overscan=1, source_anamorphic=false)
GripSize(resizer="LanczosResize")
Undot()
TemporalSoften(2,7,7,3,2)
DCTFilter(1,1,1,1,1,1,0.5,0)
#Blockbuster(method="noise",detail_min=1,detail_max=10,variance=0.3,seed=5623)
GripBorders()

(second Blockbuster line optional - use it in worst cases)

Version 3 (aka "new V2")
Code:

AviSource("PATH\NAME.avi",false)
BlindPP(cpu=4)
Blockbuster(method="noise",detail_min=1,detail_max=3,variance=0.1,seed=1)
ATC(2,3,5,0.5,false)
GripCrop(WIDTH, HEIGHT, overscan=1, source_anamorphic=false)
GripSize(resizer="LanczosResize")
Undot()
TemporalSoften(2,7,7,3,2)
DCTFilter(1,1,1,1,1,1,0.5,0)
#Blockbuster(method="noise",detail_min=1,detail_max=10,variance=0.3,seed=5623)
GripBorders()

(second Blockbuster line optional - use it in worst cases)

Version 2
Code:

AviSource("PATH\NAME.avi",false)
Undot()
Blockbuster(method="noise",detail_min=1,detail_max=8,variance=0.3,seed=5823)
ATC(2,3,5,0.5,false)
TemporalSoften(2,7,7,3,2)
GripCrop(WIDTH, HEIGHT, overscan=1, source_anamorphic=false)
GripSize(resizer="LanczosResize")
DCTFilter(1,1,1,1,1,1,0.5,0)
Blockbuster(method="noise",detail_min=1,detail_max=10,variance=0.5,seed=5623)
GripBorders()

Version 1
Code:

AviSource("PATH\NAME.avi",false)
Blockbuster(method="noise",detail_min=1,detail_max=8,variance=0.3,seed=5823)
Deen()
GripCrop(WIDTH, HEIGHT, overscan=1, source_anamorphic=false)
GripSize(resizer="LanczosResize")
Undot()
TemporalSoften(2,7,7,3,2)
DCTFilter(1,1,1,1,1,1,0.5,0)
Blockbuster(method="noise",detail_min=1,detail_max=10,variance=0.5,seed=5623)
GripBorders()



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