Avisynth Issues

This forum is for questions and discussion of all the aspects of handling and cleaning up your footage with Avisynth.
Locked
User avatar
CodeZTM
Spin Me Round
Joined: Fri Mar 03, 2006 6:13 pm
Status: Flapping Lips
Location: Arkansas
Contact:
Org Profile

Avisynth Issues

Post by CodeZTM » Wed Jul 15, 2009 10:26 pm

Mmmkay. What is this and how can I get rid of it?

Image

Current Script:

Code: Select all

AVISource("C:\Users\Zackary Murdoch\Desktop\fbone.avi")
converttoyv12 ()
Crop(8,0,-8,-0)
Spline36Resize(640,480) 
awarpsharp
TComb()
AMVDeint(mode=1)

User avatar
LivingFlame
Joined: Sat May 28, 2005 4:41 pm
Location: Closer than you think...
Org Profile

Re: Avisynth Issues

Post by LivingFlame » Wed Jul 15, 2009 10:56 pm

Put the deinterlacing stuff before the filters. Put the cropping and resizing at the end of the script. Dunno if that's your whole problem, but it should certainly help out.

Something like this:

Code: Select all

AVISource("C:\Users\Zackary Murdoch\Desktop\fbone.avi")
converttoyv12 () 
TComb()
AMVDeint(mode=1)
awarpsharp
Crop(8,0,-8,-0)
Spline36Resize(640,480)
Actually, I don't know offhand what TComb is, so maybe it goes elsewhere...
... yea ...

User avatar
CodeZTM
Spin Me Round
Joined: Fri Mar 03, 2006 6:13 pm
Status: Flapping Lips
Location: Arkansas
Contact:
Org Profile

Re: Avisynth Issues

Post by CodeZTM » Wed Jul 15, 2009 11:13 pm

Code: Select all

AVISource("C:\Users\Zackary Murdoch\Desktop\fbone.avi")
converttoyv12()
amvdeint(mode=2)
dfttest()
checkmate()
toon()
Crop(8,0,-8,-0)
Spline36Resize(640,480)
assumeframebased()
Blendbob(badframes=0)
Unblend()
After Sanchez helped me out, it's just barely there now.

Image

User avatar
AaronAMV
eating that e. coli spinach
Joined: Tue Jan 22, 2008 7:54 pm
Status: (◔ ◡ ◔ )
Location: (◔ ◡ ◔ )
Org Profile

Re: Avisynth Issues

Post by AaronAMV » Wed Jul 15, 2009 11:53 pm

It looks like someone masked the girl out, then did a zoom on her LOL
Image

User avatar
CodeZTM
Spin Me Round
Joined: Fri Mar 03, 2006 6:13 pm
Status: Flapping Lips
Location: Arkansas
Contact:
Org Profile

Re: Avisynth Issues

Post by CodeZTM » Thu Jul 16, 2009 12:02 am

AaronAMV wrote:It looks like someone masked the girl out, then did a zoom on her LOL
It's a zooming out sequence.

User avatar
AaronAMV
eating that e. coli spinach
Joined: Tue Jan 22, 2008 7:54 pm
Status: (◔ ◡ ◔ )
Location: (◔ ◡ ◔ )
Org Profile

Re: Avisynth Issues

Post by AaronAMV » Thu Jul 16, 2009 12:06 am

Code wrote:
AaronAMV wrote:It looks like someone masked the girl out, then did a zoom on her LOL
It's a zooming out sequence.
Oh. I can see how it could look like that then
Image

User avatar
mirkosp
The Absolute Mudman
Joined: Mon Apr 24, 2006 6:24 am
Status: (」・ワ・)」(⊃・ワ・)⊃
Location: Gallarate (VA), Italy
Contact:
Org Profile

Re: Avisynth Issues

Post by mirkosp » Thu Jul 16, 2009 5:18 am

Chroma blending. Gotta need a better IVTC+Decimate combo. :|
Image

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

Re: Avisynth Issues

Post by Scintilla » Thu Jul 16, 2009 7:32 am

Is there any way you could use the DVD footage straight? Because I'm looking at that exact scene now, and it IVTCs perfectly with the lines:

Code: Select all

TFM(d2v="K:\source\d2vs\furuba01.d2v")
TDecimate(mode=1)
What are the properties of the AVI file you're feeding it (framerate, interlacing)? If it's 29.97 interlaced, then you should be IVTCing, not deinterlacing; try AMVIVTC() by Zarxrax.
And even if you do want deinterlacing instead of IVTC, why are BlendBob and UnBlend in there when you already have AMVDeint() doing the deinterlacing?
ImageImage
:pizza: :pizza: Image :pizza: :pizza:

User avatar
CodeZTM
Spin Me Round
Joined: Fri Mar 03, 2006 6:13 pm
Status: Flapping Lips
Location: Arkansas
Contact:
Org Profile

Re: Avisynth Issues

Post by CodeZTM » Thu Jul 16, 2009 9:45 am

Scintilla wrote:Is there any way you could use the DVD footage straight? Because I'm looking at that exact scene now, and it IVTCs perfectly with the lines:

Code: Select all

TFM(d2v="K:\source\d2vs\furuba01.d2v")
TDecimate(mode=1)
What are the properties of the AVI file you're feeding it (framerate, interlacing)? If it's 29.97 interlaced, then you should be IVTCing, not deinterlacing; try AMVIVTC() by Zarxrax.
And even if you do want deinterlacing instead of IVTC, why are BlendBob and UnBlend in there when you already have AMVDeint() doing the deinterlacing?
Ok, that would explain a lot. Thanks, the problem was solved quickly once I swiched back to d2v's. :up:

Locked

Return to “AviSynth Help”