OpenVid: Edit Screen Recordings in Your Browser, No Uploads Required
What happens when you edit a screen recording entirely in the browser without uploading it anywhere?
You get openvid — a neat little tool that lets you trim, crop, and tweak screen recordings right inside your browser. No cloud uploads. No waiting for files to transfer. Just local, client-side editing that works with whatever you record.
What It Does
openvid is an open-source web app that turns your browser into a lightweight video editor for screen recordings. It handles the most common tasks you'd want: trimming the start or end of a clip, cropping the frame to remove dead space, and maybe adjusting a few other parameters. The entire editing process happens locally on your machine.
The repo lives at github.com/CristianOlivera1/openvid and is built with web technologies — likely using the browser's native video APIs under the hood.
Why It’s Cool
The standout feature is privacy. Because everything runs client-side, your screen recording never leaves your computer. That matters if you're capturing sensitive information (like internal dashboards, code with credentials, or customer data) and just need to trim the edges.
But it's also just practical. No signups. No account creation. No "upload in progress" bars. You grab a recording, drop it in, edit, and export. For quick tasks — cutting out the first 10 seconds of fumbling or removing that accidental browser tab you showed — it's faster than firing up a desktop editor like FFmpeg or iMovie.
The implementation is clever too. It uses the browser's native video capabilities rather than relying on a server-side transcoder, which keeps everything snappy and free.
How to Try It
- Go to the live demo (or clone the repo locally)
- Drag and drop your screen recording (.mp4 or .webm usually work best)
- Use the controls to trim, crop, or adjust as needed
- Export the result — it stays on your machine
To run locally:
git clone https://github.com/CristianOlivera1/openvid.git
cd openvid
# check the README for install instructions
No dependencies beyond a modern browser. It works on Chrome, Firefox, and Edge.
Final Thoughts
openvid isn't trying to replace Premiere Pro or DaVinci Resolve. It's a focused tool for a specific pain point: editing screen recordings quickly without sacrificing privacy. If you're a developer who records demos, bug reports, or tutorial clips, this is exactly the kind of low-friction utility that makes life easier.
Worth a bookmark for that next time you need to trim a 5-minute recording down to 30 seconds of useful footage.
Found this useful? Follow us at @githubprojects for more developer tools and open source discoveries.
Repository: https://github.com/CristianOlivera1/openvid