UNPKG

remotion

Version:

Make videos programmatically

20 lines (19 loc) 582 B
/** * Visual-mode fields for clip timing. Used by `<Sequence>` and merged into media schemas (e.g. `@remotion/media` `<Video>`). */ export declare const SEQUENCE_TIMING_SCHEMA: { readonly from: { readonly type: "number"; readonly min: 0; readonly step: 1; readonly default: 0; readonly description: "From"; }; readonly durationInFrames: { readonly type: "number"; readonly min: 0.01; readonly step: 0.01; readonly default: undefined; readonly description: "Duration in frames"; }; };