Recordly
Overview
Recordly is an open-source desktop app for recording screens and editing demo videos. It hit 16,000 GitHub stars in under three months since its March 2026 launch, which puts it in the fastest-growing developer tool category of the year: screen recording alternatives to paid tools like Screen Studio.
The project comes from webadderall, an independent developer who originally forked OpenScreen but has since rewritten over 80% of the codebase. That history matters because it means Recordly inherited some early plumbing but has diverged into its own thing — with a timeline editor, extension marketplace, and cross-platform capture backends that the original project never had. It’s backed by CodeRabbit and has an active community submitting PRs for Linux capture improvements and export performance.
The core problem Recordly solves is deceptively simple: making a good demo video is annoying. Screen Studio popularized the “record your screen, auto-zoom on clicks, add a nice background” workflow, but it’s Mac-only and costs $89. OBS is free but requires post-production skills most developers don’t have. Recordly fills the gap with a recorder-and-editor combo that handles cursor smoothing, auto-zooms, webcam overlays, and styled frames — all in a single Electron app that runs on every major OS.
Why it matters
Every fullstack developer needs to demo their work. Whether it’s a pull request walkthrough, a product launch video, a conference talk recording, or a quick Loom replacement for async standups — screen recording is a core developer workflow that’s been underserved by open source.
The timing is also relevant because AI coding agents are changing how developers build software. As more code gets generated by tools like Claude Code, Codex, and Cursor, the value shifts from writing code to communicating what the code does. Demo videos are the most effective way to communicate a product or feature, and Recordly makes that accessible without motion design skills.
The extension marketplace is the long-term play here. Community-contributed extensions for cursor click sounds, device frames, browser mockups, and wallpapers mean the tool can grow without the core team becoming a bottleneck. That’s the WordPress plugin model applied to a video editor, and it’s the kind of architecture that builds lasting ecosystems.
Key Features
Auto-Zoom Suggestions. Recordly analyzes cursor activity during recording and automatically suggests zoom regions at the points where you interacted with the screen. You can adjust or remove these in the timeline editor, but the defaults are usually good enough for a quick demo. This single feature saves 10-15 minutes per video compared to manual editing in a traditional NLE.
Cursor Polish and Motion Effects. The rendered cursor overlay replaces your actual cursor with a smoothed, styled version. Options include motion blur, click bounce animation, sway effects, and cursor loop mode for cleaner looping GIF exports. On macOS, the real cursor is cleanly excluded via ScreenCaptureKit; on Windows, the native WGC helper handles it on builds 19041+.
Timeline Editor with Drag-and-Drop. Unlike simpler tools that only let you trim start and end points, Recordly has a real timeline with zoom regions, speed-up/slow-down zones, text and image annotations, extra audio tracks, and crop-aware edits. Projects save as .recordly files that preserve all editor state, so you can come back and iterate.
Styled Frames and Backgrounds. Place your recording inside a styled frame with built-in wallpapers, custom uploads, solid colors, gradients, background blur, padding, rounded corners, and drop shadows. Aspect ratio presets handle common formats. This is the feature that makes Screen Studio videos look polished, and Recordly replicates it well.
Webcam Bubble Overlays. Add a webcam feed as a floating bubble overlay with preset positions, custom X/Y placement, mirror mode, shadow and roundness controls. The zoom-reactive scaling option keeps the webcam visually balanced during motion sequences — a detail that shows the team thinks about real presentation scenarios.
Extension Marketplace. Community extensions add cursor click sounds, device frames, browser mockups, additional wallpapers, render hooks, and settings panels. The marketplace at marketplace.recordly.dev has a growing catalog. Anyone can build and publish extensions, which keeps the core app lean while letting power users customize their workflow.
Cross-Platform Native Capture. macOS uses ScreenCaptureKit for capture with native audio. Windows uses Windows Graphics Capture (WGC) with WASAPI audio. Linux uses Electron capture APIs with PipeWire for system audio. Each platform gets the best available capture backend rather than a lowest-common-denominator approach.
Use Cases
- Product demo videos — Startup founders and indie developers recording polished feature walkthroughs for launch posts, Product Hunt submissions, or investor decks. The auto-zoom and frame styling make amateur recordings look professional.
- Pull request and code review walkthroughs — Fullstack developers recording 2-3 minute explainers of complex PRs instead of writing lengthy descriptions. The timeline editor lets you trim the dead air and focus on the relevant parts.
- Conference talks and tutorial content — Developers creating slide-free technical presentations where the screen recording is the entire talk. Webcam overlay and cursor polish handle the presentation quality.
- Async team communication — Replacing Loom or similar paid tools for internal demo videos, onboarding recordings, and bug reports. The
.recordlyproject files let teammates pick up and edit recordings. - Open source project documentation — Maintainers creating quick demo GIFs for README files. The GIF export with configurable frame rate, size presets, and loop toggle is built for this exact workflow.
Pros and Cons
Pros:
- Free and open-source (AGPL 3.0) with cross-platform support, filling a gap that Screen Studio ($89, Mac-only) and similar paid tools leave wide open.
- The extension marketplace architecture is the right long-term model — community contributions for device frames, wallpapers, and render hooks keep the core lean.
- Active development with 1,157 forks and 142 open issues as of June 2026, suggesting real community engagement beyond just star-counting.
- Native capture backends per platform (ScreenCaptureKit on macOS, WGC on Windows) rather than relying solely on Electron’s generic capture.
Cons:
- Linux support is the weakest link — cursor hiding doesn’t work, so exports may show both the real cursor and the styled overlay. System audio requires PipeWire, which isn’t universal.
- AGPL 3.0 license is restrictive for commercial embedding. If you’re building a product that includes screen recording features, you can’t use Recordly’s code without opening your own source.
- The project started as a fork of OpenScreen, and while 80% has diverged, some early architectural decisions from the fork still influence the codebase. The Electron + PixiJS stack is functional but not lightweight — expect 200-300MB RAM during recording and editing.
- No built-in AI features (auto-transcription, auto-summaries, or smart editing). In mid-2026, that’s becoming table stakes for video tools.
Getting Started
Download a prebuilt release from GitHub or build from source:
# Clone and run in development mode
git clone https://github.com/webadderall/Recordly.git recordly
cd recordly
npm install
npm run dev
For packaged builds:
# Build for your current platform
npm run build
# Or target-specific builds
npm run build:mac
npm run build:win
npm run build:linux
On Arch Linux, install from AUR:
yay -S recordly-bin
macOS users may need to remove the quarantine flag after building locally:
xattr -rd com.apple.quarantine /Applications/Recordly.app
System requirements: macOS 14.0+, Windows 10 Build 19041+, or any modern Linux distro with PipeWire for system audio.
Alternatives
Screen Studio — The Mac-only screen recorder that popularized the auto-zoom and cursor polish workflow. Screen Studio is more polished, has better export quality, and costs $89. Choose it if you’re on macOS and don’t mind paying for a premium experience. Recordly is the cross-platform, free alternative.
OBS Studio — The open-source streaming and recording powerhouse. OBS can do everything Recordly does and more, but it requires post-production in a video editor to get the same result. Choose OBS if you need streaming capabilities or advanced scene composition. Choose Recordly if you want the auto-zoom-and-frame workflow without the learning curve.
Kap — An open-source screen recorder for macOS with GIF-first output. Kap is simpler and lighter but lacks timeline editing, auto-zooms, and frame styling. Choose Kap if you just need quick GIF captures without the polish. Choose Recordly if you want the full demo video workflow.
Verdict
Recordly is the best free option right now for developers who want to make polished demo videos without learning a video editor. It’s not perfect — Linux support needs work, the Electron footprint is heavy, and there’s no AI-powered editing yet. But 16,000 stars in three months and an active extension marketplace suggest this project has real momentum. If you’re a fullstack developer who records feature demos, PR walkthroughs, or product videos more than once a month, Recordly is worth installing today. The auto-zoom and cursor polish features alone save enough time to justify the setup.