remotion
Version:
Make videos programmatically
23 lines (22 loc) • 580 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SEQUENCE_TIMING_SCHEMA = void 0;
/**
* Visual-mode fields for clip timing. Used by `<Sequence>` and merged into media schemas (e.g. `@remotion/media` `<Video>`).
*/
exports.SEQUENCE_TIMING_SCHEMA = {
from: {
type: 'number',
min: 0,
step: 1,
default: 0,
description: 'From',
},
durationInFrames: {
type: 'number',
min: 0.01,
step: 0.01,
default: undefined,
description: 'Duration in frames',
},
};