If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
Very true, DCTfilter is basically to remove the Gibbs effect but it was discovered to give some more compression also, so some ppl use it for that.
As you said, my naked eyes cannot (even now) make out the difference in the sharpness and quality (except for the lines) of the picture, perhaps you have a keen eye for it , anyways it all about preferences....so test on a small clip and decide if you would want to use a particular filter or not
As you said, my naked eyes cannot (even now) make out the difference ..
no no tech,i never wrote or had thinked it.the screenshots that i posted are from encoded samples and not using a single .avs cript loaded in vdub. you see easily the diferences.i only get 4 frames from each result.if i good remember,sometimes you see fast thin blank lines in the movie(like flash) and dct filter really give more compression but "dry" the colors.
compare here again:
no filters:
DCTFilter(1,1,1,1,1,1,0.5,0) (only)
FFT3DFilter(bt=-1, sharpen=0.4) (only)
*Asharp(1.1,2.5) give seamless result as FFT3DFilter(bt=-1, sharpen=0.4) but this last filter is better,show amazing 2d effects but(another but)is slow,veeery slow.Asharp,in the other side is faster.
compare speeds in my duron1.8 512Mbram:
FFT3DFilter CCE Max Speed: 0.240
Asharp CCE Max Speed: 1.020
the idea of this thread(i think) is to use cool filters for cool results.
RB care of the target size,then,we don't need to bore with filters to give compression.
Thanks UncasMS for a great post. I ran an older title thru DVDRB last night with UnDot and Deen, and I believe the end result looks better than the original even after 65% compression. I'm wondering, for future reference, if you think fluxsmooth would have been useful in this situation?
My question is: Since they all require YV12 colorspace, how can the filters work in DVD-RB when the YV12 colorspace conversion happens _after_ the filters run?
(maybe)because you're using avisynth 2.5 or new version and have divx or xvid installed in your system.
you can edit your script like this(from RB usinc CCE as encoder):
#------------------
# AVS File Created by DVD Rebuilder
# VOBID:01, CELLID:01
#------------------
LoadPlugin("C:\Arquivos de programas\DVD-RB\DGDecode.dll")
mpeg2source("D:\???\D2VAVS\V01.D2V")
trim(0,489)
Deen()
UnDot()
Asharp(1,2)
#ConvertToYUY2(interlaced=true)
#AudioDub(BlankClip())
opening in vdub you will read:
ATI YVU12 4:2:0 PLANAR
decompressor: XviD mpeg4 codec
...now,removing the "#" in the script,load again in vdub:
FourCC: (YUY2) YUV 4:2:2
decompressor: YUV 4:2:2 (YUY2)
see here: http://www.avisynth.org/index.php?pa...rageInAviSynth
my taste to use this filters to get more sharpness(first)/compression(later) result without solarizations and run faster as you posted:
undot()
Asharp(1.1, 2.5) #or FFT3DFilter(bt=-1,sharpen=0.4) looks better but is slow than asharp
deen()
# try too light cleaning --> deen("a3d",3,4,1,4) -medium cleaning --> deen("a3d",3,6,1,6) -heavy cleaning --> deen("a3d",4,9,1,9)
Thanks for the welcome! I'm just using DVD-RB 1.05 with AVISynth 2.56a. I'm a newbie to plugins/scripts so my question is really basic. I was just wondering how DVD-RB can run the filters when the colorspace conversion happens after the filters run? BTW: I found the cleaning suggestions for Deen to be very useful.
Thanks for the welcome! I'm just using DVD-RB 1.05 with AVISynth 2.56a. I'm a newbie to plugins/scripts so my question is really basic. I was just wondering how DVD-RB can run the filters when the colorspace conversion happens after the filters run? BTW: I found the cleaning suggestions for Deen to be very useful.
A DVD's native colorspace is YV12... so no conversion has to be done before running filters that require YV12. There are filters out there that will only work on YUY2, so you can put a conversion in as a filter. The "ConvertToYV12()" or "ConvertToYUY2()" that is inserted after the filters is there just in case someone has added a color conversion as a filter... so it will convert back. CCE requires YUY2 while HC uses YV12. The conversion filter is smart enough to know that if it is already in that color space, nothing needs to be done -- so it also doesn't slow anything down.
For some reason I get get this to work it has been a bit since I used this I cant remember it. I searched and as far as I can tell I have it right
---------------------- EDIT
never mind it might help if I would have put these little guys " " in dont know why I put them in here and not on DVDRB my guess is that lots of sleep is needed
What am I doing wrong I can't get avisynth to work everytime HC starts I get an error.Here is what I put
Loadplugin("C:\Program Files\AviSynth 2.5\plugins\FluxSmooth25.dll")
Loadplugin("C:\Program Files\AviSynth 2.5\plugins\UnDot.dll")
FluxSmooth(5,7)
UnDot()
I have to head off to work so if someone helps I will read it later tonight.Its odd I never had this problem befor
Thanks
Comment