Selur's Little Message Board
Vapoursynth "Only apply to" frame range issue - Printable Version

+- Selur's Little Message Board (https://forum.selur.net)
+-- Forum: Hybrid - Support (https://forum.selur.net/forum-1.html)
+--- Forum: Problems & Questions (https://forum.selur.net/forum-3.html)
+--- Thread: Vapoursynth "Only apply to" frame range issue (/thread-3837.html)



Vapoursynth "Only apply to" frame range issue - Lipomo - 28.08.2024

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


RE: Vapoursynth "Only apply to" frame range issue - Selur - 28.08.2024

Hybrid uses 'remap.Rfs' (see: https://github.com/Irrational-Encoding-Wizardry/Vapoursynth-RemapFrames ), so:
[8 14]
Should apply the filter only to frames 8-14.

Cu Selur


RE: Vapoursynth "Only apply to" frame range issue - Lipomo - 28.08.2024

Nice it works thanks again. A small description with an example would help a lot for further updates


RE: Vapoursynth "Only apply to" frame range issue - Selur - 28.08.2024

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


RE: Vapoursynth "Only apply to" frame range issue - Lipomo - 28.08.2024

Nice !