Suggested scripts

This forum is for questions and discussion of all the aspects of handling and cleaning up your footage with Avisynth.
Locked
User avatar
godix
a disturbed member
Joined: Sat Aug 03, 2002 12:13 am
Org Profile

Suggested scripts

Post by godix » Sat Nov 11, 2006 10:55 pm

Now that we have this fancy new forum for AviSynth I suggest people post their scripts for specific series here. AMVwiki had this but for the most part that project seems to have died. And yes, I know there's a wide variety of scripts and scripting is one of those areas that some say 'learn to do it yourself' but lets face it, some people love playing with scripting while others despise it and just want something that looks decent so they can edit. Personally speaking, if someone can post a script that makes the original non-platinum Eva look like anything but pure crap then I'll suck your dick*.

* offer not valid to anyone since I am straight
Image

User avatar
Kariudo
Twilight prince
Joined: Fri Jul 15, 2005 11:08 pm
Status: 1924 bots banned and counting!
Location: Los taquitos unidos
Contact:
Org Profile

Post by Kariudo » Sat Nov 11, 2006 11:59 pm

well...I'm thinking of doing something with eva in the near future, so I started playing around with avisynth...maybe this'l work with the non-platinum version too.

Code: Select all

TFM(order=-1,mode=5,PP=7,field=-1,slow=2)
tdecimate(mode=1)
RemoveGrain()
blur(0,1)
warpsharp()
Deen("a3d", 1)
ConvertToYUY2()
FixBrokenChromaUpsampling()
looked at the amvwiki one and added some stuff
left is after, right is before
Image
if you don't click on it again (to show full image) the lines will be messed up, but the noise is still gone
Image
Image

User avatar
Scintilla
(for EXTREME)
Joined: Mon Mar 31, 2003 8:47 pm
Status: Quo
Location: New Jersey
Contact:
Org Profile

Post by Scintilla » Sun Nov 12, 2006 12:19 am

Kariudo wrote:

Code: Select all

FixBrokenChromaUpsampling()
What in hell? Why would there be a bad chroma upsampling in that processing chain?

(And does this filter even work for bad chroma upsamplings that have nothing to do with the Canopus DV codec, which is cited in the documentation as the reason the filter was written?)
ImageImage
:pizza: :pizza: Image :pizza: :pizza:

User avatar
Kariudo
Twilight prince
Joined: Fri Jul 15, 2005 11:08 pm
Status: 1924 bots banned and counting!
Location: Los taquitos unidos
Contact:
Org Profile

Post by Kariudo » Sun Nov 12, 2006 12:35 am

Scintilla wrote:
Kariudo wrote:

Code: Select all

FixBrokenChromaUpsampling()
What in hell? Why would there be a bad chroma upsampling in that processing chain?

(And does this filter even work for bad chroma upsamplings that have nothing to do with the Canopus DV codec, which is cited in the documentation as the reason the filter was written?)
hmm..didn't read the documentation, looked at the example in eadfag and then looked at the first few frames. Thought I saw a similarity, decided to use that filter and liked the result (made the colors in the scene less hazy)
left is before right is after
Image
Image
Image

User avatar
AMV_4000
Joined: Wed Apr 10, 2002 6:29 am
Location: USA
Contact:
Org Profile

Post by AMV_4000 » Sun Nov 12, 2006 12:37 am

a really good way to make FLCL look better? *de-interlacing and stuff*

i fixed my video by playing with avs, but for anyone else, whats best??

User avatar
x_rex30
Joined: Tue Apr 10, 2001 4:30 pm
Org Profile

Post by x_rex30 » Sun Nov 12, 2006 1:33 am

I recommend this for Bible Black.

Code: Select all

loadplugin("C:\Programs\Programs\dgmpgdec140\DGDecode.dll")
mpeg2source("H:\Bible Black\Bible Black.d2v",info=3)
LoadPlugin("C:\Avisynth\plugins\fft3dfilter.dll")
Import("C:\Programs\Installers\AviSynth Plugins\LimitedSharpenFaster.avs")
ColorMatrix(hints=true)
BiFrost()
DeCross()
dedot()
AssumeTFF()
Interp = SeparateFields().SelectEven().EEDI2(field=1)
Deinted=TDeint(order=1,field=1,edeint=Interp)
TFM(d2v="H:\Bible Black\Bible Black.d2v",mode=6,order=1,PP=7,slow=2,mChroma=false,Clip2=Deinted)
TDecimate(mode=1)
FFT3DFilter(sigma=6,plane=3,bw=32,bh=32,bt=3,ow=16,oh=16)
Crop(10,2,704,478,align=true)
Lanczos4Resize(640,480)
Tweak(hue=1.0,sat=1.3,bright=0.0,cont=1.0)
msharpen(threshold=0,strength=71)
LimitedSharpenFaster()
Levels(0,0.880,255,0,255)
AssumeFPS(23.976)
Before
Image
After
Image

Might want to F with Tweak, I just set it up the way I thought looked good. I had some help from Chainmax, thanks goes to him for the deinterlacing method and for some of the filters used.

User avatar
AMV_4000
Joined: Wed Apr 10, 2002 6:29 am
Location: USA
Contact:
Org Profile

Post by AMV_4000 » Sun Nov 12, 2006 2:06 am

anything for Princess 69? or should i just toy with it like i did flcl?

User avatar
Kariudo
Twilight prince
Joined: Fri Jul 15, 2005 11:08 pm
Status: 1924 bots banned and counting!
Location: Los taquitos unidos
Contact:
Org Profile

Post by Kariudo » Sun Nov 12, 2006 2:50 am

It's been mentioned a few times before, but AvsP is a really nice tool
http://forum.doom9.org/showthread.php?t=115506
very helpful for fine-tuning the filters in your script (unless you happen to like using beforeafter and having to re-open the script everytime you make a change)

it really helped out for when I cleaned up Full Metal Panic? Fumoffu (finding the fthreshl and othreshl values)...speaking of which

Code: Select all

Tcomb(mode=2,fthreshl=12, othreshl=19)
TFM(order=-1,mode=5,PP=7,field=-1,slow=2)
tdecimate(mode=1)
Deen("a3d",1,2,5)
crop(8,0,-8,0)
lanczosresize(720,480)
tweak(sat=1.2)
the tweak was added to try to compensate for the "washed out" look that can occur from filtering, though I had that line commented out for this shot
Image
Image
Image

User avatar
ngsilver
The Old School Otaku
Joined: Sat Jun 28, 2003 1:22 pm
Status: She/Her
Location: Detroit area
Contact:
Org Profile

Post by ngsilver » Sun Nov 12, 2006 10:51 am

Anyone have a script to clean up LD rips of Sailor Stars? I've seen some good quality videos reciently and wondered what they were doing differently then me.
ImageImageImageImage

User avatar
Qyot27
Surreptitious fluffy bunny
Joined: Fri Aug 30, 2002 12:08 pm
Status: Creepin' between the bullfrogs
Location: St. Pete, FL
Contact:
Org Profile

Post by Qyot27 » Sun Nov 12, 2006 11:42 am

Kariudo wrote:looked at the amvwiki one and added some stuff
I should note that the script for Platinum on AMVWiki is from before I started using TFM, which did away with the need for Blur, Warpsharp, and FastLineDarken (Blur was to get rid of the interlacing artifacts Telecine left behind, Warpsharp was to counteract the haze Blur introduced, and FastLineDarken was called to try to get the lines back at the right thickness - since TFM minimized or eliminated the interlacing artifacts, there was no longer a reason for that long chain). Unfortunately, I can't edit pages on there anymore, or at least the Eva ones, and couldn't/can't fix it.

Locked

Return to “AviSynth Help”