
This is actually not the best example, but trust me, it looks much worse in motion.
I have absolutely no idea where to start with this, could I please get some help? Many thanks in advance.
Code: Select all
deblock()
vaguedenoiser()
fluxsmoothST(temporal_threshold=8, spatial_threshold=8)
limitedsharpenfaster(edgemode=1,wide=true,strength=100)
JaddziaDax wrote:Well if you really want better quality the only thing you can do is start with the better quality source... the better quality your imput is the better quality your output will be... but if you don't mind having lower quality then that is fine as well..
My suggestion: keep playing around with avisynth, and obviously take Kariudo's advice, but if you are still concerned then post "before and after" pictures.
beforeafterline(1,"""filter01.filter02.filter03""")
just don't encode with this filter in effect because the line will show up in the encode.
And just so you know my version is the Disney licensed DVD O.o
I just downloaded AMVapp 3.0 in the general amv forum. If I'm not mistaken, isn't it the latest version?JaddziaDax wrote:i must have gotten it in one of the versions of the amvapp... O.o i didn't hunt it down or anything...
So, look through the .AVSI files that get installed to your AVISynth plugins directory, until you find the function BeforeAfterLine(). (It doesn't have to be in the filename of the .AVSI file.)Vax wrote:I just downloaded AMVapp 3.0 in the general amv forum. If I'm not mistaken, isn't it the latest version?JaddziaDax wrote:i must have gotten it in one of the versions of the amvapp... O.o i didn't hunt it down or anything...
Code: Select all
##################################################################
# BeforeAfter by Absolute Destiny and Corran (Eric Parsons) #
# e.g. #
# beforeafter(clip, placement, filters) #
# #
# 1 for vertical splitscreen, 0 for horizontal splitscreen #
##################################################################
function beforeafter(clip a, int "placement", string "filters"){
placement = Default(placement, 1)
Assert((Float(Width(a))/16)==Round(Width(a)/16), "Source image width must be a multiple of 16")
b = Eval("a."+filters)
c = (placement==1) ? StackHorizontal(a.Crop(0,0,-((Ceil(Float(Width(a))/32))*16),0).\
Subtitle("before"),b.Crop(((Floor(Float(Width(a))/32))*16),0,0,0).\
Subtitle("after")) :StackVertical(a.Crop(0,0,0,-Height(a)/2).Subtitle("Before"),b.\
Crop(0,Height(a)/2,0,0).Subtitle("After"))
Return c
}