UNPKG

n8n-nodes-selfhosthub

Version:

Collection of n8n nodes for self-hosted AI services, including Leonardo.ai integration for AI image and content generation capabilities.

67 lines 2.02 kB
"use strict"; // nodes/CreateJ2vMovie/presentation/templates.ts Object.defineProperty(exports, "__esModule", { value: true }); exports.templateSelectorParameter = void 0; /** * Template selector parameter for advanced mode */ exports.templateSelectorParameter = { displayName: 'Template', name: 'templateType', type: 'options', options: [ { name: 'Blank Template', value: 'blank', description: 'Empty template to start from scratch', }, { name: 'Video from images', value: 'videoImage', description: 'Create video from images', }, { name: 'Video + Audio Merge', value: 'videoAudio', description: 'Merge video with audio track', }, { name: 'Video Sequence', value: 'videoSequence', description: 'Merge multiple videos in sequence', }, { name: 'Image Slideshow', value: 'slideshow', description: 'Create slideshow from images with transitions', }, { name: 'Video with Text Overlay', value: 'textOverlay', description: 'Add text overlays to video', }, { name: 'Faceless Video (TTS + Visuals)', value: 'faceless', description: 'Create faceless video with AI voice and visuals', }, { name: 'Social Media Story (9:16)', value: 'socialStory', description: 'Vertical video for Instagram/TikTok', }, { name: 'Presentation/Tutorial', value: 'presentation', description: 'Educational content with voice and visuals', }, ], default: 'blank', description: 'Select a pre-built template to start with', displayOptions: { show: { advancedMode: [true], }, }, }; //# sourceMappingURL=templates.js.map