Colour Errors

This forum is for questions and discussion of all the aspects of handling and cleaning up your footage with Avisynth.
User avatar
Martinsson18
Joined: Sun Oct 15, 2006 2:02 am
Location: Berlin
Org Profile

Colour Errors

Post by Martinsson18 » Tue Jul 31, 2007 9:29 am

So, I wanted to make a little Fumoffu-AMV, but then I noticed a lot of source probs. One of them were these dot crawls. I didn't get out all of them, but those you can see are rarely and I'll not use them while editing. Btw, I got the scripts from this topic and change them a little bit. So, where's the problem? Well, after I used DeRainbow() the rainbow-effects were gone, but therefore there are some colour-errors.

Image

<B>Mpeg2Source("D:\Source\FUMOFFU\DVD 1\VTS_02_1.d2v", cpu=4, ipp=true, idct=5)
DeRainbow()
Tcomb(mode=2,fthreshl=12, othreshl=19)
TFM(order=-1,mode=5,PP=7,field=-1,slow=2)
TDecimate(2)
TIsophote()
Deen("a3d",1,2,5)
vmtoon(thinning=100, strength=75, ssw=2, ssh=2, xstren=175)
crop(8,0,-8,0)
lanczosresize(640,480)
tweak(sat=1.0)</B>


Now I want to know what I can do to clear my footage of these errors!? Or does anybody have a better script? Please let me know. Wait, there is one more thing. Am I able to make an antialising after compressed it?

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

Re: Colour Errors

Post by Scintilla » Tue Jul 31, 2007 5:43 pm

Martinsson18 wrote:Mpeg2Source("D:\Source\FUMOFFU\DVD 1\VTS_02_1.d2v", cpu=4, ipp=true, idct=5)
DeRainbow()
Tcomb(mode=2,fthreshl=12, othreshl=19)
Why are you using two derainbowers?
Martinsson18 wrote:Deen("a3d",1,2,5)
Of course, this could also be contributing to your problems (though with such weak settings, I doubt it).
Martinsson18 wrote:tweak(sat=1.0)
And this line doesn't even do anything at all.

I'm not sure what you mean by your last question; do you mean compressing the video for distribution when you're finished editing, or...?
ImageImage
:pizza: :pizza: Image :pizza: :pizza:

User avatar
Martinsson18
Joined: Sun Oct 15, 2006 2:02 am
Location: Berlin
Org Profile

Post by Martinsson18 » Tue Jul 31, 2007 7:09 pm

I'm not very good with this technical stuff. I guess, you already noticed. :?
I used two DeRainbowers because with only TComb or DeRainbow there is no good result. About the last question; imo the lines look ugly, so I wanted to make them more straight. I know that this is possible with TDeint, but I've no idea how to do it with TFM. Sorry about my inexperience. :oops: So, what's a better script-solution?

User avatar
Martinsson18
Joined: Sun Oct 15, 2006 2:02 am
Location: Berlin
Org Profile

Post by Martinsson18 » Tue Jul 31, 2007 7:12 pm

<B>Source-Info:</B>
Image

User avatar
Zarxrax
Joined: Sun Apr 01, 2001 6:37 pm
Contact:
Org Profile

Post by Zarxrax » Tue Jul 31, 2007 7:30 pm

vmtoon might be contributing to the jaggedness of the lines.
Remove the "2" from tdecimate. That will completely screw up your framerate.

To see whats causing the color problems, comment out lines one at a time to see which filter causes it (put a # infront of the line).

User avatar
Martinsson18
Joined: Sun Oct 15, 2006 2:02 am
Location: Berlin
Org Profile

Post by Martinsson18 » Wed Aug 01, 2007 4:05 am

Ok, I got it. The problem were the two DeRainbowers. But now I have another prob. I cannot take out all of the rainbows with only TComb and I can't take another DeRainbower because I need TComb for undotting the file (almost) completely.


<B>Script:</B>
Mpeg2Source("D:\Source\FUMOFFU\DVD 1\VTS_04_1.d2v", cpu=4, ipp=true, idct=5)
Tcomb(mode=2,fthreshl=12, othreshl=19)
TFM(order=-1,mode=5,PP=7,field=-1,slow=2)
TDecimate()
TIsophote()
Deen("a3d",1,2,5)
crop(8,0,-8,0)
lanczosresize(640,480)

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

Post by Scintilla » Wed Aug 01, 2007 6:14 am

Martinsson18 wrote:I cannot take out all of the rainbows with only TComb and I can't take another DeRainbower because I need TComb for undotting the file (almost) completely.
You're using TComb in mode 2, which only works on the chroma. It shouldn't be doing any undotting at all.
ImageImage
:pizza: :pizza: Image :pizza: :pizza:

User avatar
Martinsson18
Joined: Sun Oct 15, 2006 2:02 am
Location: Berlin
Org Profile

Post by Martinsson18 » Wed Aug 01, 2007 7:12 am

Okay, one last question: Are DFMDeRainbow() and DeRainbow() equal? It's because I would like to try all DeRainbowers there are and I cannot find the DFM thing to download anywhere. :? Also VDub shows an error-message everytime I tried to put it into the script.

User avatar
Zarxrax
Joined: Sun Apr 01, 2001 6:37 pm
Contact:
Org Profile

Post by Zarxrax » Wed Aug 01, 2007 7:25 am

Try bifrost as your derainbower. It seems to be pretty decent in my tests. I never tried tcomb.

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 » Wed Aug 01, 2007 3:47 pm

Martinsson18 wrote:Okay, one last question: Are DFMDeRainbow() and DeRainbow() equal? It's because I would like to try all DeRainbowers there are and I cannot find the DFM thing to download anywhere. :? Also VDub shows an error-message everytime I tried to put it into the script.
I usually use a combination of DFMDeRainbow and LUTDeRainbow - that wipes out most of the rainbows I come across (makes the rainbows in the original R1 DVD release of the Ah! My Goddess OVA virtually, if not completely, disappear). Just be aware that pairing them together will slow down your script exponentially. I've never had much luck with other derainbowing filters. I stick to only using TComb's undot/luma functions (mode=0).

Locked

Return to “AviSynth Help”