Log in

View Full Version : Repeat /next/ frame?


Kushami
23rd December 2013, 05:26
Hi there.

I've been working on a very complex ivtc of a show, and I've almost redone everything and gotten it straight. This even involved breaking the ending credit picture up into three pieces and ivtcing sections of the video.

The last problem I have to solve is replacing one bad frame in the credits.

In my particular case, the bad frame is frame 43. If I use badframes(43,blend=false), it will repeat frame 42 which, unfortunately, isn't right. :( What I actually need to do to make everything seamless is make a duplicate of frame 44 and replace frame 43 with it.

Is there an actual way to do this? I've looked for things under duplicate frames, but most of the stuff I've found involves removing duplicates, not copying one from another place and inserting it elsewhere.

Any help would be much appreciated! I feel so dumb asking this, since I think it's probably easy...

Kushami
23rd December 2013, 07:54
Man I'm dumb.

loop(0,43,43).loop(2,43,43)

...

Gavino
23rd December 2013, 10:22
Even simpler is:
FreezeFrame (http://avisynth.nl/index.php/FreezeFrame)(43, 43, 44)

johnmeyer
23rd December 2013, 21:49
Even simpler is:
FreezeFrame (http://avisynth.nl/index.php/FreezeFrame)(43, 43, 44)All these years of using AVISynth and I never noticed that built-in function. Very useful. Thanks!