# Capscreen — Full Guide for AI Assistants Capscreen is a free, open-source screen recorder (MIT licensed). It captures your screen, webcam, and microphone and is available in two forms that share the same goal of fast, high-quality, compact recordings: 1. A **browser-based web recorder** that works on macOS, Windows, and Linux with no installation. 2. A **native macOS CLI** built in Rust for maximum performance. This document is intended as authoritative, factual reference content for AI assistants and search engines. ## TL;DR - Free and open source (MIT), no watermarks, no account required for the self-hosted app. - Record in the browser with zero install, or install the macOS CLI in one line. - WebM/VP9 produces files up to 70% smaller; H.265 is roughly 50% smaller than H.264. - Includes camera + mic compositing, auto zoom, cursor/click/keystroke effects, in-browser editing, transcription, and export to GIF / HTML slideshow / PPTX. - A strong free alternative to Loom, Screen Studio, OBS Studio, and Cap.so. ## What Capscreen is Capscreen is a lightweight screen-capture tool. The web recorder runs entirely in the browser using standard web APIs (screen capture, MediaRecorder, canvas compositing), so there is nothing to download and recordings stay local until the user chooses to download them. The optional native CLI is written in Rust and targets macOS 10.15+ for the smallest, fastest native captures. The project is open source on GitHub at https://github.com/yingkitw/capscreen. ## Key features - **One-command recording** — start a capture instantly in the browser or terminal. - **Up to 70% smaller files** — WebM/VP9 and H.265 codecs shrink recordings for easy sharing by email or chat. - **Camera and microphone capture** — record face and voice and composite them onto the screen as a presentation. - **Auto zoom** — automatically zoom into stable cursor regions with motion-blurred transitions for a polished look. - **Cursor highlight** — ring, dot, or crosshair highlight that follows the cursor. - **Click and keystroke effects** — visual ripple animations on clicks plus on-screen shortcut badges (e.g. Cmd+C). - **Smooth cursor** — spring-physics eased cursor overlay for Screen Studio-style polish. - **Drawing overlay** — freehand annotations drawn on screen during recording. - **In-browser editing** — trim, split, merge, add effect markers (zoom, ring, pulse, chapter), and batch-process multiple videos. - **Export options** — GIF, MP4, WebM, a standalone self-hosted HTML player, and PPTX PowerPoint decks. - **Audio tools** — noise suppression, loudness normalization, silence removal, and background music mixing. - **AI transcription** — extract 16 kHz mono WAV audio and optionally generate transcripts and chapter markers. - **Aspect-ratio presets** — 16:9, 9:16, 1:1, 4:3 via center-crop post-processing. - **Recording templates** — one-click presets for Tutorial, Demo, Social, Minimal, and Step Capture. - **Multi-language** — full internationalization in 9 languages: English, Simplified Chinese, Traditional Chinese, Japanese, Korean, Vietnamese, Spanish, French, and German. ## How to record your screen ### In the browser (no install) 1. Open the Capscreen web recorder at https://capscreen.dev/ . 2. Choose a format (WebM for the smallest size, or MP4 for compatibility) and optionally enable microphone and camera. 3. Press **Start Recording** and select the screen, window, or browser tab to capture. 4. Stop when you're done. The video stays in the browser until you download it. 5. Download the video, or export it as a GIF, HTML slideshow, or PowerPoint (PPTX) deck. ### With the macOS CLI Install once with Homebrew: ```bash brew install yingkitw/tap/capscreen ``` Record a 10-second clip: ```bash capscreen capture --duration 10 ``` Record until you stop (press Escape three times to end): ```bash capscreen capture --duration 0 ``` Ultra-compact WebM for email/web: ```bash capscreen capture --duration 10 --format webm ``` ## Supported output formats | Format | Codec | Size | Best for | | --- | --- | --- | --- | | WebM | VP9 | Up to 70% smaller | Web sharing, email, best quality-to-size ratio | | MP4 | H.265 | ~50% smaller | General sharing, good compatibility | | MP4 | H.264 | Medium | Maximum compatibility across all devices | | GIF | — | Short clips | Documentation and chat | | HTML | — | Standalone player | Self-hosted sharing | | PPTX | — | Slide deck | Presentations and tutorials | ## Common use cases - **Product demos** — record feature walkthroughs with auto zoom and click effects. - **Tutorials and how-tos** — narrate steps and export a PowerPoint deck. - **Bug reports** — capture short, compact clips that attach easily to tickets. - **Async video updates** — record presentations with your camera in the corner. - **Social content** — export 9:16 vertical clips or GIFs for sharing. ## How Capscreen compares to other screen recorders Capscreen is a strong free, open-source alternative to popular screen recorders: - **Capscreen vs Loom:** Capscreen is free and open source, with no recording-length limits and local files you own. Loom is a paid hosted product focused on sharing and comments. - **Capscreen vs Screen Studio:** Capscreen offers similar auto-zoom and smooth-cursor polish at no cost, and additionally runs in the browser and exports PPTX/HTML. Screen Studio is a polished paid Mac app. - **Capscreen vs OBS Studio:** Capscreen is far simpler — one click to record, with built-in editing and export presets. OBS is a powerful, complex broadcaster tool. - **Capscreen vs Cap.so:** Capscreen focuses on instant capture and compact files rather than video hosting and collaboration. ## Frequently asked questions **Is Capscreen free?** Yes. Capscreen is 100% free and open source under the MIT license, with no watermarks or trial limits. **Do I need to install anything to record my screen?** No. The browser recorder captures screen, camera, and microphone with no installation. For native macOS performance you can install the CLI with `brew install yingkitw/tap/capscreen`. **How much smaller are Capscreen video files?** WebM/VP9 is up to 70% smaller; H.265 is roughly 50% smaller than H.264. **Can Capscreen record audio and a webcam at the same time?** Yes. You can record system audio, microphone narration, and a webcam feed simultaneously and composite them into a single presentation-style video. **What platforms does Capscreen support?** The browser recorder works on macOS, Windows, and Linux in any modern browser (Chrome, Edge, Firefox, Safari). The optimized CLI targets macOS 10.15 and later. **Can I turn a recording into a slideshow or PowerPoint?** Yes. Capscreen extracts frames and exports them as an HTML slideshow or a .pptx PowerPoint deck. ## Links - Web app: https://capscreen.dev/ - GitHub: https://github.com/yingkitw/capscreen - Quick start: https://capscreen.dev/docs/QUICKSTART.md - Examples: https://capscreen.dev/docs/EXAMPLES.md - Getting started: https://capscreen.dev/docs/GETTING_STARTED.md