DeleteFrame

From Avisynth wiki
(Difference between revisions)
Jump to: navigation, search
m (1 revision)
m (added category)
Line 24: Line 24:
  
 
[[Category:Internal filters]]
 
[[Category:Internal filters]]
 +
[[Category:Timeline_editing_filters]]

Revision as of 16:30, 8 November 2015

DeleteFrame(clip clip, int frame_num [, ...])

DeleteFrame deletes a set of frames, given as a number of arguments. The sound track is not modified, so if you use this filter too many times in a row you may get noticeable desynchronization.

Examples:

DeleteFrame(3, 9, 21, 42) # delete frames 3, 9, 21 and 42

If you want to delete a range of frames (a to b, say) along with the corresponding portion of the soundtrack, you can do it like this:

 Trim(0,a-1) ++ Trim(b+1,0)

Or like this:

 Loop(0,a,b)

Changelog:

v2.58 Added support for multiple arguments.
Personal tools