rendiv-video
Installation
SKILL.md
Rendiv Video Skills
Use these skills whenever you are working with rendiv code — writing compositions, animating elements, embedding media, or rendering output.
Core Mental Model
Rendiv treats video as a pure function of a frame number. Every visual property
(position, opacity, color, scale) is derived from the current frame via useFrame().
There is no timeline state machine, no imperative keyframe API. You write a React
component that accepts a frame and returns JSX — rendiv handles the rest.
import { useFrame, interpolate } from '@rendiv/core';