Skip to content
Processing locally — files never leave your device

Audio & Video

8 tools

Browser-based audio and video utilities. Record audio and screen, snap webcam photos, extract thumbnails from video, mute video tracks, and use built-in speech synthesis and recognition.

A privacy-first media studio that lives in a browser tab

Every tool in this category shares one design rule: your microphone audio, camera frames, screen captures, and media files are processed where they already are — on your own machine — instead of being shipped to a server for handling. That is not a marketing line; it is a consequence of which browser APIs these tools are built on. The pages below explain, tool by tool, exactly where the bytes travel so you can decide what is safe to run for any given clip.

Why “runs in the browser” usually means “stays on your device”

When a page grabs your camera with getUserMedia() or your screen with getDisplayMedia(), the resulting stream is a JavaScript object inside the tab. Encoding it into a saved file with MediaRecorder, painting a frame to a <canvas>, or trimming samples through the Web Audio API all happen in that same sandbox. None of those steps require a network call, so the finished file can be handed to you as a download without ever leaving the device. The one deliberate exception is live speech recognition — see below.

The honest exception: speech-to-text

Live transcription is the only tool here that is notfully on-device. Browsers implement the Web Speech Recognition API by streaming your microphone audio to the browser maker's cloud (Google's servers in Chrome, Apple's in Safari) and returning text. We call this out plainly on that tool's page so you can avoid dictating passwords or confidential material through it. Everything else — recording, snapshots, trimming, muting, thumbnail grabs, and text-to-speech with local voices — keeps your data on the machine.

When the browser beats a desktop app — and when it does not

Reach for these tools when you want zero install, instant access on any computer, and a guarantee that a one-off private clip never touches someone else's server. They win for a quick voice memo, a screenshot from a video, an ID photo, or stripping music off a clip before posting. Where a desktop app like FFmpeg still wins is bulk work: batch-converting hundreds of files, lossless container edits with no re-encode, or exporting directly to MP3/MP4 without a second conversion step. The browser trades a little fidelity and throughput for privacy and convenience — a good deal for the single-file jobs these tools are built for.

Start with one of these

Other categories