Script Kit Logo
Script Kit
by John Lindquist
Vercel OSS Program

Scripts by tooy-120

MoviePy Video Editor

tooy-120's avatar
tooy-120
// Name: MoviePy Video Editor
// Description: Convert Python MoviePy script to JavaScript video editing workflow
// Author: tooy-120
import "@johnlindquist/kit"
// Constants for better maintainability
const PROJECT_STRUCTURE = {
assets: "assets",
audio: "audio",
output: "output"
} as const
const VIDEO_RESOLUTIONS = [
{ name: "HD (1280x720)", value: "1280x720" },
{ name: "Full HD (1920x1080)", value: "1920x1080" },
{ name: "4K (3840x2160)", value: "3840x2160" },
{ name: "Square (1080x1080)", value: "1080x1080" },
{ name: "Custom", value: "custom" }
] as const
428 lines below • View full script