Clypra

Open-source desktop video editor built with Tauri, React, and FFmpeg, aiming to replicate CapCut's premium features for free.

Table of Contents

A young open-source desktop video editor that wants to be a free CapCut. Multi-track timeline, frame-accurate trim, audio waveforms, filmstrip preview, FFmpeg under the hood. Cross-platform via Tauri (macOS, Windows, Linux). Still very early — 29 commits, 0 stars at time of capture, no releases yet — but the architecture and stack choices are sane.

What it is for

Local desktop video editing without subscriptions, watermarks, or cloud uploads. Targets the CapCut feature set rather than trying to be DaVinci Resolve.

Supported inputs:

Type Formats
Video MP4, MOV, WebM, MKV, M4V, AVI
Audio MP3, WAV, AAC
Image JPG, PNG, WebP

Stack

Layer Tech
Frontend React 19, TypeScript, Tailwind CSS 4, Vite 7
Desktop Tauri 2, Rust
Media FFmpeg via CLI
License MIT

The Tauri + Rust shell is the interesting part — keeps the binary small and gives proper native performance, vs. Electron-based alternatives.

Install

Prerequisites: Node 18+, Rust + Cargo, FFmpeg.

brew install ffmpeg          # macOS
git clone https://github.com/AIEraDev/clypra.git
cd clypra
npm install
npm run tauri dev            # development
npm run tauri build          # production binary in src-tauri/target/release/

Value

For me, mostly worth tracking rather than using today:

  • The tech stack (Tauri + React + FFmpeg) is what I'd reach for if I was building a media tool myself — nice reference.
  • If it gets to v1 it could replace the small CapCut workflows I do for short clips.
  • Roadmap items worth watching: transitions, text/title overlays, export presets, plugin system.

Keep an eye on it. Re-evaluate when there's a release tag and a few hundred stars.