digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Video Encoding and Conversion (http://www.digitalfaq.com/archives/encode/)
-   -   Removing DCTs in the source (http://www.digitalfaq.com/archives/encode/4880-removing-dcts-source.html)

girv 08-20-2003 10:34 AM

Quote:

Originally Posted by vmesquita
I just would like to announce that I added the script I used to my DivX/DVD to KDVD/KSVCD using CCE/Tmpgenc Guide as the DivX suggested Script! Thanks Girv and DialHot!

wooo, fame at last :D

Wolfi 08-20-2003 11:18 AM

Oke now then :)
Code:

LoadPlugin("C:\Filters\MPEG2Dec3.dll")
LoadPlugin("C:\Filters\atc.dll")
LoadPlugin("C:\Filters\Blockbuster.dll")
LoadPlugin("C:\Filters\VSFilter.dll")

AVISource("C:\movie.avi",false)

Blockbuster(method="noise",detail_min=1,detail_max=8,variance=0.3,seed=5823)
ATC(1,2,4,0.5,false)
TemporalSoften(2,7,7,3,2)
Blockbuster(method="noise",detail_min=1,detail_max=10,variance=0.5,seed=5823)

gripCrop(540, 480, overscan=2,source_anamorphic=false,dest_anamorphic=false)

GripSize(resizer="lanczosresize")
GripBorders()

TextSub("C:\movie.srt")
converttoyuy2()

I've seen false in I think every script and also true. I dont actually know how to be more precise. Is these two commands like YES or NO or something. I dont know what I'm looking for here...these two words comes up every were, aspecially false :idea:

//Wolfi

girv 08-20-2003 11:26 AM

@wolfi: yes "true" and "false" mean much the same as "yes" and "no".

eg: a parameter might be called "enable high quality mode", then
"true" => yes, enable high quality mode
"false" => no, dont enable high quality mode

Hope thats clear?

Wolfi 08-20-2003 11:42 AM

Juppz all clear :) Thank for helping me getting started with aviS. v2.52 :lol: I love to see this script in action :twisted:

//Wolfi

incognito 08-20-2003 12:37 PM

Quote:

Originally Posted by vmesquita
As I announced, I added this script to my guide as the DivX script.

Where's the complete guide? I'd like to check it out. You never know what you can learn. :D

Wolfi 08-20-2003 12:49 PM

http://www.kvcd.net/forum/viewtopic.php?t=5142&start=0 I think :idea:

//Wolfi

incognito 08-23-2003 04:24 AM

OK the guide says to use avisynth 2.5 which I have. I thought Blockbuster was removed from 2.5? So i saw the sticky about how to load 2.0 plugins in 2.5 and i get
Code:

Blockbuster: clip must be in YUY2 format
Am I missing something?

vmesquita 08-23-2003 05:15 AM

incognito,

Blockbuster is an external avisynth filter. There is a 2.5 version. Please download the filters pack in the thread of guide.
This error is happening because 2.0x plugins only accepct YUY2 input, not YU12() which is Avisynth 2.5 native colorspace. This would also work:
converttoyuy2().blockbuster(...)
But it is better to use the 2.5x blockbuster.

[]'s
Vmesquita

incognito 08-23-2003 11:01 AM

Thanks.

Payasa 08-24-2003 07:44 AM

Quote:

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)
Blockbuster(method="noise",detail_min=1,detail_max =10,variance=0.5,seed=5823)
GripCrop(352, 288+0+0, overscan=1, source_anamorphic=false, dest_anamorphic=false)
GripSize(resizer="LanczosResize")
DCTFilter(1,1,1,1,1,1,0.5,0)
GripBorders()
since i`m using svcd resolution should i edit the svcd resolution like this?
one for pal and one for ntsc?

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)
Blockbuster(method="noise",detail_min=1,detail_max =10,variance=0.5,seed=5823)
GripCrop(480, 480/576+0+0, overscan=1, source_anamorphic=false, dest_anamorphic=false)
GripSize(resizer="LanczosResize")
DCTFilter(1,1,1,1,1,1,0.5,0)
GripBorders()

vmesquita 08-24-2003 10:26 AM

@Payasa

Yes!

[]'s
Vmesquita

Wolfi 08-24-2003 02:38 PM

In this new script, what do you think of adding DCTFilter or STMfilter :?:

Code:

Blockbuster(method="noise",detail_min=1,detail_max=8,variance=0.3,seed=5823)
ATC(1,2,4,0.5,false)
TemporalSoften(2,7,7,3,2)
Blockbuster(method="noise",detail_min=1,detail_max=10,variance=0.5,seed=5823)

//Wolfi

Dialhot 08-24-2003 03:38 PM

Quote:

Originally Posted by Wolfi
In this new script, what do you think of adding DCTFilter or STMfilter :?:

STMedianFilter is useless as ATC does the same job.
But I use to add DCT in the end of the script, but I confess I do this more because I do it for all my scripts than because it's really usefull ;-)

Wolfi 08-25-2003 11:25 AM

hehe :lol: Can you tell me how your DCTfilter line looks please :) And a few questions about DVTfilter :arrow:

1.Will DCTfilter make the final output size smaler?

2. How will it effect the quality?

//Wolfi

Dialhot 08-25-2003 11:37 AM

Quote:

Originally Posted by Wolfi
1.Will DCTfilter make the final output size smaler?

Yes, that is why I always use it.

Quote:

2. How will it effect the quality?
It has no effect on the quality, that is why I always use it. :-D

DCTFilter(1,1,1,1,1,1,0.5,0)

incognito 08-25-2003 01:08 PM

This script with CQMatic rocks. Thanks.

Bombai 08-29-2003 01:18 AM

How would be the final script for divx sources? thanks guys...

EDIT: It's possible that would be this that i have post after?

Bombai 08-29-2003 01:25 AM

Quote:

Originally Posted by Wolfi
Oke now then :)
Code:

LoadPlugin("C:\Filters\MPEG2Dec3.dll")
LoadPlugin("C:\Filters\atc.dll")
LoadPlugin("C:\Filters\Blockbuster.dll")
LoadPlugin("C:\Filters\VSFilter.dll")

AVISource("C:\movie.avi",false)

Blockbuster(method="noise",detail_min=1,detail_max=8,variance=0.3,seed=5823)
ATC(1,2,4,0.5,false)
TemporalSoften(2,7,7,3,2)
Blockbuster(method="noise",detail_min=1,detail_max=10,variance=0.5,seed=5823)

gripCrop(540, 480, overscan=2,source_anamorphic=false,dest_anamorphic=false)

GripSize(resizer="lanczosresize")
GripBorders()

TextSub("C:\movie.srt")
converttoyuy2()

I've seen false in I think every script and also true. I dont actually know how to be more precise. Is these two commands like YES or NO or something. I dont know what I'm looking for here...these two words comes up every were, aspecially false :idea:

//Wolfi

I'm confused, in the dll section if I use gripcrop, is not necessary to load GripFit_YV12.dll?

thanks a lot...

Dialhot 08-29-2003 03:25 AM

Quote:

Originally Posted by Bombai
I'm confused, in the dll section if I use gripcrop, is not necessary to load GripFit_YV12.dll?

Yes it is necessary. But the best way is to put ALL plugins into the "plugins" directory of avs2.52 and you won't need any loadplugin line at all !

Bombai 08-29-2003 03:48 AM

ok, thanks dialhot...

Only another question, is not necessary undot() and Limiter, in this script that i have posted?

thanks again...


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

Site design, images and content © 2002-2026 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2026 Jelsoft Enterprises Ltd.