DuplicateFrame
From Avisynth wiki
(Difference between revisions)
m (1 revision) |
(add link to avs+ documentation) |
||
(One intermediate revision by one user not shown) | |||
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'' [, ...])}} | ||
Line 16: | Line 22: | ||
[[Category:Internal filters]] | [[Category:Internal filters]] | ||
+ | [[Category:Timeline_editing_filters]] |
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. |