Hahaha, won't tell you.Bauzi wrote:Of course.
So what do you use for the outro?
It's not yet fully decided.
yay the MEP is almost done , I´m impatient to see it finished, though I think bauzi is part will look strange with all those animes (compared to our tracks with 1 anime), though I can´t tell since I didn´t get to see Bauzi is betasKaxi wrote:Hahaha, won't tell you.Bauzi wrote:Of course.
So what do you use for the outro?
It's not yet fully decided.
Okay, i took a look and i think we will need the following:Bauzi wrote:Uhm... could you try this:
http://www.animemusicvideos.org/guides/ ... tqual.html
I´m interrested how much you can get out with these methods. ^^
Code: Select all
# PLUGINS
LoadPlugin("C:\Programme\AviSynth 2.5\plugins\DGDecode.dll")
LoadPlugin("C:\Programme\AviSynth 2.5\plugins\Decomb521.dll")
LoadPlugin("C:\Programme\AviSynth 2.5\plugins\DeGrainMedian.dll") # DeGrainMedian 0.8 (http://bag.hotmail.ru/)
LoadPlugin("C:\Programme\AviSynth 2.5\plugins\FFT3DFilter.dll") # FFT3DFilter 1.8.5 (http://bag.hotmail.ru/)
LoadPlugin("C:\Programme\AviSynth 2.5\plugins\AWarpSharp.dll") # aWarpSharp Beta 1 (http://ziquash.chez-alice.fr/)
LoadPlugin("C:\Programme\AviSynth 2.5\plugins\Deen.dll") # Deen Beta 2 (http://www.avisynth.org/warpenterprises/)
#LoadPlugin("C:\dgmpgdec146\DGDecode.dll") # DGMPGDec 1.2.1 oder 1.4.6 (http://www.neuron2.net/dgmpgdec/dgmpgdec.html)
LoadPlugin("C:\Programme\AviSynth 2.5\plugins\Masktools.dll") # Masktools 1.5.8 (http://manao4.free.fr/)
LoadPlugin("C:\Programme\AviSynth 2.5\plugins\mt_masktools.dll") # MaskTools 2.0 Alpha 27 (http://manao4.free.fr/)
LoadPlugin("C:\Programme\AviSynth 2.5\plugins\Temporalcleaner.dll") # TemporalCleaner Beta 2 (http://www.avisynth.org/warpenterprises/)
LoadPlugin("C:\Programme\AviSynth 2.5\plugins\RepairS.dll") # RemoveGrain 1.0 pre (http://home.arcor.de/kassandro/Remov...emoveGrain.rar)
LoadPlugin("C:\Programme\AviSynth 2.5\plugins\RemovegrainS.dll") # RemoveGrain 1.0 pre (http://home.arcor.de/kassandro/Remov...emoveGrain.rar)
LoadPlugin("C:\Programme\AviSynth 2.5\plugins\TDeint.dll") # TDeint 1.0 RC 2 (http://bengal.missouri.edu/~kes25c/)
LoadPlugin("C:\Programme\AviSynth 2.5\plugins\TIvtc.dll") # TIvtc 1.0 RC 1 (http://bengal.missouri.edu/~kes25c/)
LoadPlugin("C:\Programme\AviSynth 2.5\plugins\De.dll") # DeDot_YV12 v0.0.02 (http://nullinfo.s21.xrea.com/)
Import("C:\Programme\AviSynth 2.5\plugins\LimitedSharpenFaster.avs")
Import("C:\Programme\AviSynth 2.5\plugins\FastLineDarken.avs")
Import("C:\Programme\AviSynth 2.5\plugins\BlindDeHalo3.avs")
Import("C:\Programme\AviSynth 2.5\plugins\DeHalo_alpha.avs")
# SOURCE
mpeg2source("blabla.d2v")
trim(x,y)
They should stand at the avs-docfiles or in the old/current avtech guides.vmToon: Those of you who read the previous version of this guide may remember two functions by the names of FastLineDarken and MFToon.
Simply: Never install AmvAPP while you are in the middle of a project.Kaxi wrote:Thanks guys, i'll see what i can do. I might use another sharpening tool or install AmvAPP. What filter do you use for sharpening?
Pick one? I don´t know wich should be better for us. Just give it a try.Old avtech wrote:Sharpening Filters
In terms of compression, sharpening is not usually a good thing It will make your file much harder to compress. However, there are situations where sharpening can be useful for improving picture quality. There are 2 sharpeners you need to know about for anime and they both give very different results.
The first is Warpsharp which doesn't work like an ordinary sharpener as it sharpens through warping rather than convolution. To see what I mean, try it There are warpsharp versions for RGB mode and YUV mode included in the advanced avs pack - note well that the YUV version is very buggy and will have to be loaded manually:
loadplugin("C:/AVSFilters/extra/warpsharp.dll")
ConverttoYUY2()
warpsharp(22,1)
or RGB
ConvertToRGB32() #necessary to read RGB24 data correctly
VD_WarpSharp(22)
The benefit of warpsharp is in doing things like tidying up rough edges and eliminating dot crawl. It's a useful filter and probably best used *after* resizing but it really only has particular uses. I wouldn't use it on everything, only if there are edge problems in your video that could do with looking better.
The other sharpening filter I'm going to talk about is msharpen - which is the brother of msmooth. Like msmooth, it does edge detection on the source and makes a mask but this time it masks out everything that isnt an edge and sharpens just the edges. This can lead to good results. It is very important, however, to correctly set up the edge detection.
Msharpen(strength=7,threshold=10,mask=false,debug=false)
Setup your threshold with mask=true and then put mask=false and set your strength. Small strength values are what you'll want - don't go OTT with this filter. It should have some uses for blurry sources.