DuplicateFrame
From Avisynth wiki
(Difference between revisions)
Raffriff42 (Talk | contribs) m (added category) |
(add link to avs+ documentation) |
||
Line 1: | Line 1: | ||
+ | <div {{BlueBox2|40|0|3px solid purple}} > | ||
+ | {{AvsPlusFullname}}<br> | ||
+ | Up-to-date documentation: [https://avisynthplus.readthedocs.io/en/latest/avisynthdoc/corefilters/duplicateframe.html https://avisynthplus.readthedocs.io] | ||
+ | </div> | ||
+ | |||
+ | |||
{{Template:FuncDef|DuplicateFrame(clip ''clip'', int ''frame_num'' [, ...])}} | {{Template:FuncDef|DuplicateFrame(clip ''clip'', int ''frame_num'' [, ...])}} | ||
Latest revision as of 07:35, 18 September 2022
AviSynth+
Up-to-date documentation: https://avisynthplus.readthedocs.io
DuplicateFrame(clip clip, int frame_num [, ...])
DuplicateFrame is the opposite of DeleteFrame. It duplicates a set of frames given as a number of arguments. As with DeleteFrame, the sound track is not modified.
Examples:
DuplicateFrame(3, 3, 21, 42) # Add 4 frames
Changelog:
v2.58 | Added support for multiple arguments. |