Selur's Little Message Board

Full Version: Vapoursynth "Only apply to" frame range issue
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to specify a frame range with that option ?

I tried 8-14, but only frame 8 have the filter
Commas doesn't work as a separator

Also there isn't any explanation in the help panel / right click
Hybrid uses 'remap.Rfs' (see: https://github.com/Irrational-Encoding-W...emapFrames ), so:
Code:
[8 14]
Should apply the filter only to frames 8-14.

Cu Selur
Nice it works thanks again. A small description with an example would help a lot for further updates
I'll add a tool-tip with:
Quote:Each line in the text file or in the mappings string must have one of the following forms:
'a z'
Replaces frame a in the base clip with frame z from the filtered clip.
'[a b] z'
Replaces all frames in the range [a b] of the base clip with frame z from the filtered clip.
'[a b] [y z]'
Replaces all frames in the range [a b] in the base clip with frames in the range [y z] from the filtered clip. If the input and output ranges do not have equal sizes, frames will be duplicated or dropped evenly from [y z] to match the size of [a b]. If y > z, the order of the output frames is reversed.
as description, that should help.

Cu Selur
Nice !