UNPKG

scrptly

Version:

Scrptly is a Video Development Kit (VDK) for programmatically generating AI-powered videos.

21 lines (20 loc) 516 B
import VisualLayer from './VisualLayer.js'; export default class CaptionsLayer extends VisualLayer { source; sourceType; static type = 'captions'; constructor(parent, properties = {}, settings) { super(parent, properties, settings); } static get defaultSettings() { return { ...super.defaultSettings, sourceType: 'layer', }; } static get defaultProperties() { return { ...super.defaultProperties, }; } }