03-22-2003, 07:11 AM
|
Free Member
|
|
Join Date: Jun 2002
Location: Germany
Posts: 1,288
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Hi all!
I'm just posting, to see what filter combinations you guys use at the moment! just post the script, and tell us what you think about it!
__________________
j3llyG0053
|
Someday, 12:01 PM
|
|
Site Staff / Ad Manager
|
|
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
|
|
|
03-22-2003, 01:12 PM
|
Free Member
|
|
Join Date: Jan 2003
Location: a PAL land (UK)
Posts: 408
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
MergeChroma(blur(1.58))
MergeLuma(blur(0.05))
LegalClip()
GripCrop(480, 576)
GripSize()
Faerydust()
SmoothHiQ(5,25,35,200,10)
GripBorders()
DctFilter(1,1,1,1,1,.5,.5,0)
Letterbox(0,0,16,16)
LegalClip()
is what I use most of the time, works great for most films. If I want a sharper image I'll use SpaceDust() instead of FaeryDust, and Blockbuster(method="noise" variance=.6 seed=1) after SmoothHiQ if I'm getting too many DCT blocks.
EDiT: Source DivX/XviD AVI or DVD, although I normally won't need Blockbuster noise with DVDs.
|
03-22-2003, 01:16 PM
|
Free Member
|
|
Join Date: Jan 2003
Posts: 1,009
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
oh, and remember..
Source from: LD; DVB; DVD; Capture AVI (DV vs. huffy vs. mjpeg vs. PIC) and VHS..
So we know why you used those filters.. he he..
-vhelp
|
03-22-2003, 02:17 PM
|
Free Member
|
|
Join Date: Jul 2002
Location: Chelmsford, UK
Posts: 130
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
I'm using avisynth 2.5 now. With both scripts i can get 2 films to dvd
For DVD Rips (i only go to DVD, not CD):
mpeg2source("test.d2v")
ac3Source("test AC3 T01 2_0ch 192Kbps DELAY 0ms.ac3")
#sampler(60) # - Use for any file prediction
AutoCrop(mode=0,wMultOf=16,hMultOf=16,leftAdd=16,r ightAdd=16,topAdd=16,bottomAdd=16)
Convolution3d (preset="movieHQ") #Or LQ if need more compression
DctFilter(1,1,1,1,1,.5,.5,0)
Limiter() #Limit color threshold to TV colourspace
ConvertToRGB24()
And For TV Caps:
AviSource("capture (2003-03-22 at 17-35-53).avi")
#FieldDeinterlace() #Use FieldDeinterlace if the source is interlaced
ConvertToYv12()
#sampler(60) #- Use for any file prediction
AutoCrop(mode=0,wMultOf=16,hMultOf=16,leftAdd=16,r ightAdd=16,topAdd=0,bottomAdd=0)
Convolution3d (preset="animeBQ")
TemporalCleaner()
UnDot()
DctFilter(1,1,1,1,1,0.5,0.5,0)
Limiter()
ConvertToRGB24()
|
03-22-2003, 03:54 PM
|
Free Member
|
|
Join Date: Sep 2002
Location: Lahti, Finland
Posts: 1,652
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
I have a script like this for TV captures:
Code:
LoadPlugin("c:\avs25\sampler-2.5.dll")
LoadPlugin("c:\avs25\tomsmocomp.dll")
LoadPlugin("c:\avs25\dctfilter.dll")
LoadPlugin("c:\avs25\cnr2.dll")
LoadPlugin("c:\avs25\fluxsmooth-2.5.dll")
LoadPlugin("c:\avs25\undot.dll")
LoadPlugin("c:\avs25\blockbuster.dll")
SegmentedAVISource("c:\temp\captures\lapparit.avi")
KillAudio()
TomsMoComp(0,0,1)
Crop(4,4,712,568)
UnDot()
#Trim(0,1510).BilinearResize(320,512)
Trim(1511,38005).BicubicResize(320,512,0,0.6)
#Trim(38006,39710).BilinearResize(320,512)
CNR2(mode="xxx")
FluxSmooth(15,-1)
MergeChroma(Blur(1.58))
MergeLuma(Blur(0.2))
Blockbuster( method="dither", detail_min=1, detail_max=10, variance=0.7, seed=1 )
AddBorders(16,32,16,32)
DCTFilter(1,1,1,1,1,1,0.5,0)
Limiter()
#Sampler(length=24)
Fast and very good quality
|
03-26-2003, 09:24 AM
|
Free Member
|
|
Join Date: Feb 2003
Location: Ontario, Canada
Posts: 49
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
Originally Posted by PyRoMaNiA
MergeChroma(blur(1.58 ))
MergeLuma(blur(0.8 ))
LegalClip()
GripCrop(480, 576)
GripSize()
Faerydust()
Convolution3D(preset="movieLQ")
GripBorders()
Letterbox(0,0,16,16)
LegalClip()
is what I use most of the time, works great for most films. If I want a sharper image I'll use SpaceDust() instead of FaeryDust, and Blockbuster(method="noise" variance=.6 seed=1) after Convolution3D if I'm getting too many DCT blocks.
EDiT: Source DivX/XviD AVI or DVD, although I normally won't need Blockbuster noise with DVDs, and I might use Convolution3D(preset="movieHQ") instead.
|
What template are you using Pyro??
|
03-26-2003, 10:36 AM
|
Free Member
|
|
Join Date: Dec 2002
Posts: 99
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
I use this combination as others do and find it gives great quality and compression together. When using AviSynth 2.51 these are very fast filters.
Convolution3dyv12 (preset="movieLQ")
DctFilter(1,1,1,1,1,.5,.5,0)
|
03-26-2003, 11:09 AM
|
Free Member
|
|
Join Date: Jan 2003
Location: a PAL land (UK)
Posts: 408
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
What template are you using Pyro??
|
KVCDx3 with the resolution dropped to 480x480/576, as my player does not support 528 or 544 resolutions. Actually I think that mergeluma should be around .4 instead of 8...I'll go edit my post.
|
03-26-2003, 12:53 PM
|
Free Member
|
|
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
Originally Posted by PyRoMaNiA
Actually I think that mergeluma should be around .4 instead of 8...I'll go edit my post.
|
I'm currently using:
Code:
mergechroma(blur(1.58))
mergeluma(blur(0.05))
On all my scripts
-kwag
|
03-26-2003, 02:16 PM
|
Free Member
|
|
Join Date: Jan 2003
Posts: 398
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
Originally Posted by kwag
Code:
mergechroma(blur(1.58))
mergeluma(blur(0.05))
On all my scripts
-kwag
|
do i need a special plugin to use mergechroma and mergeluma?
__________________
greetz Kane
|
03-26-2003, 02:47 PM
|
Free Member
|
|
Join Date: Jan 2003
Location: a PAL land (UK)
Posts: 408
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
do i need a special plugin to use megachroma and megaluma?
|
Nope.
Quote:
I'm currently using:
Code:
mergechroma(blur(1.58))
mergeluma(blur(0.05))
On all my scripts
|
If that's what you think is best, then I'll use it too!
...off I go to edit my post again...
|
03-26-2003, 03:33 PM
|
Free Member
|
|
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
Originally Posted by PyRoMaNiA
If that's what you think is best, then I'll use it too!
...off I go to edit my post again...
|
I like 0.05 on luma, because even at ~0.1, it starts to blurr the image too much.
-kwag
|
03-26-2003, 04:00 PM
|
Free Member
|
|
Join Date: Jan 2003
Location: a PAL land (UK)
Posts: 408
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Oh wait, 0.05...seems I misread it  , I thought it was 0.5...maybe I'll stick to 0.4 as that looks fine to me...
|
03-26-2003, 04:04 PM
|
Free Member
|
|
Join Date: Jan 2003
Posts: 398
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
Originally Posted by PyRoMaNiA
Quote:
do i need a special plugin to use megachroma and megaluma?
|
Nope.
|
well, if i add those two lines in my script, i get a message:
script error: there is no function MergeChroma
what must i add?
this is my script
Code:
#==============================================#
# -= AviSynth script by MovieStacker v1.1.1 =- #
#==============================================#
LoadPlugin("E:\Appz\MovieStacker\Filters\MPEG2Dec.dll")
LoadPlugin("E:\Appz\MovieStacker\Filters\NoMoSmooth.dll")
LoadPlugin("E:\Appz\MovieStacker\Filters\Convolution3D.dll")
LoadPlugin("E:\Appz\MovieStacker\Filters\GripFit_preview.dll")
LoadPlugin("E:\Appz\MovieStacker\Filters\DustV5.dll")
LoadPlugin("E:\Appz\MovieStacker\Filters\LegalClip.dll")
Mpeg2Source("E:\HdR1\herr der ringe.d2v")
LegalClip()
GripCrop(528, 576, overscan=2)
GripSize(resizer="BilinearResize")
SpaceDust()
NoMoSmooth(30, 2, 6, 2, 6)
MergeChroma(blur(1.58 ))
MergeLuma(blur(0.05 ))
Convolution3D(preset="movieLQ")
GripBorders()
LegalClip()
__________________
greetz Kane
|
03-26-2003, 04:11 PM
|
Free Member
|
|
Join Date: Jan 2003
Location: a PAL land (UK)
Posts: 408
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Hmm, now that I've compared it a bit I see theres quite a difference...I suppose I'll go for 0.05 as well. So off I go to edit my post again.
Edit: Kane, try:
Code:
Mpeg2Source("E:\HdR1\herr der ringe.d2v")
MergeChroma(blur(1.58))
MergeLuma(blur(0.05))
LegalClip()
GripCrop(528, 576, overscan=2)
GripSize(resizer="BilinearResize")
SpaceDust()
NoMoSmooth(30, 2, 6, 2, 6)
Convolution3D(preset="movieLQ")
GripBorders()
LegalClip()
|
03-26-2003, 04:22 PM
|
Free Member
|
|
Join Date: Jan 2003
Posts: 398
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
hmmm, nothing changed, still the same error
__________________
greetz Kane
|
03-26-2003, 04:25 PM
|
Free Member
|
|
Join Date: Sep 2002
Location: USA
Posts: 103
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
@ Kane,
May just be a Cut/Paste thing but...
It should read:
MergeChroma(blur(1.58))
MergeLuma(blur(0.05))
Your script reads:
MergeChroma(blur(1.58 ))
MergeLuma(blur(0.05 ))
Tighten your script...should work.
|
03-26-2003, 04:29 PM
|
Free Member
|
|
Join Date: Jan 2003
Posts: 398
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
i got the mistake, i still had avisynth 2.07 installed, i just upgraded to 2.08 and it works
__________________
greetz Kane
|
03-26-2003, 04:49 PM
|
Free Member
|
|
Join Date: Sep 2002
Location: USA
Posts: 103
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
@ Kane,
Good to hear you got it.
I`m doing "Band of Brothers" Disc 1 as we speak..almost done.
Using:
Code:
Mpeg2Source("H:\DvD Rips\Band of Brothers\Band of Brothers CD1/BoB-Disc-1.d2v")
GripCrop(352, 240)
GripSize(resizer="lanczosresize")
mergechroma(blur(1.58))
mergeluma(blur(0.2))
FaeryDust()
FluxSmooth(7,7)
NoMoSmooth(40,1,6,1,3,false)
Convolution3D(preset="movieHQ")
DctFilter(1,1,1,1,1,.5,.5,0)
convertfps(29.97)
Movie is 2hrs5min.
A mixed action movie, with muted colors...can`t wait to see how it turns out!
|
03-26-2003, 05:05 PM
|
Free Member
|
|
Join Date: Jan 2003
Posts: 398
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
wow, with mergechroma and mergeluma one step of prediction lasts more than 30minutes
but the video seems to be sharper with those filters.
__________________
greetz Kane
|
All times are GMT -5. The time now is 09:10 PM — vBulletin © Jelsoft Enterprises Ltd
|