Colour Errors
- Martinsson18
- Joined: Sun Oct 15, 2006 2:02 am
- Location: Berlin
Colour Errors
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.
<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?
<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?
- Scintilla
- (for EXTREME)
- Joined: Mon Mar 31, 2003 8:47 pm
- Status: Quo
- Location: New Jersey
- Contact:
Re: Colour Errors
Why are you using two derainbowers?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)
Of course, this could also be contributing to your problems (though with such weak settings, I doubt it).Martinsson18 wrote:Deen("a3d",1,2,5)
And this line doesn't even do anything at all.Martinsson18 wrote:tweak(sat=1.0)
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...?
- Martinsson18
- Joined: Sun Oct 15, 2006 2:02 am
- Location: Berlin
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. So, what's a better script-solution?
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. So, what's a better script-solution?
- Zarxrax
- Joined: Sun Apr 01, 2001 6:37 pm
- Contact:
- Martinsson18
- Joined: Sun Oct 15, 2006 2:02 am
- Location: Berlin
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)
<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)
- Scintilla
- (for EXTREME)
- Joined: Mon Mar 31, 2003 8:47 pm
- Status: Quo
- Location: New Jersey
- Contact:
- Martinsson18
- Joined: Sun Oct 15, 2006 2:02 am
- Location: Berlin
- Zarxrax
- Joined: Sun Apr 01, 2001 6:37 pm
- Contact:
- Qyot27
- Surreptitious fluffy bunny
- Joined: Fri Aug 30, 2002 12:08 pm
- Status: Creepin' between the bullfrogs
- Location: St. Pete, FL
- Contact:
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).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.