VideoFlowcodeGitHubTry itCoreRenderersReact Video EditorPlaygroundExamplesDocscodeGitHubTry it
Example

Basic text

Fade a title in and out.

#text#fade
// One title animated with hand-rolled keyframes — addText + animate + $.wait.
const $ = new VideoFlow({
  name: 'Basic Text',
  width: 1920,
  height: 1080,
  fps: 30,
});

// fontSize is in em (1em = 1% of project width).
const title = $.addText({
  text: 'Hello, VideoFlow!',
  fontSize: 9,
  fontWeight: 800,
  color: '#ffffff',
});

// Entry: fade + scale-up. animate() pushes two keyframes and advances flow.
title.animate(
  { opacity: 0, scale: 0.8 },
  { opacity: 1, scale: 1 },
  { duration: '0.8s' },
);

$.wait('1.5s');
title.animate(
  { opacity: 1, scale: 1 },
  { opacity: 0, scale: 1.2 },
  { duration: '0.8s' },
);

return $;
Compiling00:00
play_arrowOpen in playgroundcodeSource on GitHub← All examples
VideoFlow

Open-source toolkit for composing videos from code.

Product

CoreRenderersReact Video EditorPlayground

Learn

DocsAPI referenceExamplesvs. Remotionvs. FFmpeg

Project

GitHubLicenseContactTermsPrivacy

From the blog

All posts →How to Automate Loom-style Product Demos with TypeScriptAutomated Podcast Audiogram Generator: Turning Audio into Viral Video with TypeScriptHow to Turn Markdown Changelogs into Automated Product Update VideosAutomating Personalized Onboarding Videos with VideoFlow and TypeScriptAutomating YouTube Shorts: Build a Vertical Video Factory in 30 Lines of TypeScriptCinematic 3D Video with TypeScript: A Guide to Perspective and RotationCinematic GLSL Effect Stacking: Building High-End Visuals with CodeDiffable Video: Versioning Your Media Pipeline with VideoJSON
© 2026 VideoFlow. Apache-2.0 core.