I am an idiot.

This forum is for questions and discussion of all the aspects of handling and cleaning up your footage with Avisynth.
Locked
User avatar
Zarxrax
Joined: Sun Apr 01, 2001 6:37 pm
Contact:
Org Profile

Re: I am an idiot.

Post by Zarxrax » Sun Feb 07, 2010 12:10 pm

Some software such as the notorious "Super" can break your plugin autoloading. It's possible that you installed that or some other broken software that caused it.

User avatar
OzzieAlThor79
Joined: Fri Aug 20, 2004 10:09 pm
Location: Saint Paul, Minnesota U.S.A.
Org Profile

Re: I am an idiot.

Post by OzzieAlThor79 » Mon Feb 08, 2010 9:15 pm

So to not clutter the board, I have an extremely basic script I am using just to tinker.

Lanczos4Resize(720,480)
FastLineDarken(150,100,4,0)
Tweak(sat=1.1,cont=1.1)
Telecide(order=1,guide=0)
Decimate(cycle=5, mode=2)
LoadTDeint()
TDeint(mode=1,order=1)
BlendBob()

Here's what I am getting from my Huffyuv AVI (with "Always suggest RGB" clicked).

Image

Image

You can see the dark shadows kind of where the body "will or would be". I don't get this all the time. On the first picture, the shadow on the white arm on the right is there although that object is NOT moving.

The guides don't tell me what I've screwed up this time.

Besides probably having something that does the same thing twice in my script, is one of my filters causing this?

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

Re: I am an idiot.

Post by Kariudo » Mon Feb 08, 2010 10:07 pm

OzzieAlThor79 wrote:So to not clutter the board, I have an extremely basic script I am using just to tinker.

Lanczos4Resize(720,480)
FastLineDarken(150,100,4,0)
Tweak(sat=1.1,cont=1.1)
Telecide(order=1,guide=0)
Decimate(cycle=5, mode=2)
LoadTDeint()
TDeint(mode=1,order=1)
BlendBob()

Here's what I am getting from my Huffyuv AVI (with "Always suggest RGB" clicked).

Quoted Image converted to link:
http://i14.photobucket.com/albums/a343/ ... /issue.jpg

Quoted Image converted to link:
http://i14.photobucket.com/albums/a343/ ... issue2.jpg

You can see the dark shadows kind of where the body "will or would be". I don't get this all the time. On the first picture, the shadow on the white arm on the right is there although that object is NOT moving.

The guides don't tell me what I've screwed up this time.

Besides probably having something that does the same thing twice in my script, is one of my filters causing this?
I'm pretty sure this only applies to vertical resizing, but resizing while your footage is still interlaced is a very bad idea. That, and if you are using dvds as a source, the footage should already be 720x480.

Tweak is probably safe going before your IVTC chain, but fastlinedarken() I'd put after.
I doubt that you actually need tweak in the first place, as TTGL is modern and very colorful to begin with

blendbob should be taken out, as should TDeint (and LoadTDeint() which I assume is just a function that you made to do the loadplugin() thing,) you've already made the footage progressive with Telecide and Decimate. I haven't worked with TTGL, so I don't know if there is a rainbow problem (which is something else blendbob() can handle) but I'd go with LUTDeRainbow(), DMFDerainbow(), Tcomb(), DeRainbow(), or something like that if you do have rainbows to kill.

so then, your script ends up looking like this

Code: Select all

Telecide(order=1,guide=0)
Decimate(cycle=5, mode=2)
FastLineDarken(150,100,4,0)
Image
Image

User avatar
OzzieAlThor79
Joined: Fri Aug 20, 2004 10:09 pm
Location: Saint Paul, Minnesota U.S.A.
Org Profile

Re: I am an idiot.

Post by OzzieAlThor79 » Tue Feb 09, 2010 12:51 am

OK. That worked.

Yes, TDient was me tinkerind.

BlendBob I thought was needed but you were right, it looks better without it.

I put tweak on after everything again because I wanted just a touch more brightness for the inside scenes.

Was the TDient versus my Tel and Dec causing that?

User avatar
OzzieAlThor79
Joined: Fri Aug 20, 2004 10:09 pm
Location: Saint Paul, Minnesota U.S.A.
Org Profile

Re: I am an idiot.

Post by OzzieAlThor79 » Tue Feb 09, 2010 12:52 am

When I say "Causing that", I mean the issues in the picutres.

I don;t get to edit posts here... :?

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

Re: I am an idiot.

Post by Kariudo » Tue Feb 09, 2010 2:22 am

my guess is that blendbob was causing that
second guess is fastlinedarken when it was before telecide+decimate

Blendbob, Telecide+Decimate, and TDeint are all used for similar things. I can't imagine a situation where you'll end up needing more than one of those in a script...unless you decide to use TFM, which is similar to Telecide. TFM has a parameter to pass it an externally deinterlaced clip, which you could use TDecimate to do...but that's a detail you most likely won't have to worry about.
Image
Image

User avatar
OzzieAlThor79
Joined: Fri Aug 20, 2004 10:09 pm
Location: Saint Paul, Minnesota U.S.A.
Org Profile

Re: I am an idiot.

Post by OzzieAlThor79 » Tue Feb 09, 2010 8:00 am

Gotcha. I guess I never realized that the order the request came in meant so much.

Locked

Return to “AviSynth Help”