Log in

View Full Version : SwapFields for individual frames


Lycaon
13th September 2005, 09:01
I have a capture of some telecined NTSC footage. Some of the progressive frames need to have have there fields flipped spatially. But it's only a few here and there.

Is there any SwapFields syntax that could apply the swap to only a few nonconsecutive frames?

Thanks

Mug Funky
13th September 2005, 09:05
i tried using "iscombed", scriptclip and swapfields to only swap frames that are still combed after IVTC.

then i realised it was that idiotic premiere that was flipping the fields in the first place, so i didn't develop it any further.

it did appear to work though.

stickboy
13th September 2005, 09:41
I have a capture of some telecined NTSC footage. Some of the progressive frames need to have have there fields flipped spatially. But it's only a few here and there.

Is there any SwapFields syntax that could apply the swap to only a few nonconsecutive frames?You could use my RemapFrames plug-in (http://www.avisynth.org/stickboy/), and then you could do:# Replaces frames 13, 17, 25, 40 with SwapFields() versions.
ReplaceFramesSimple(clip, clip.SwapFields(),
\ mappings="13 17 25 40")