Toolvore

Screen Recorder

Record your screen or a window and download the video — no install.

This tool runs entirely in your browser. Your data is never uploaded, never stored, and never leaves your device.

Captures your screen, a single window or one browser tab as a WebM video, with an optional microphone track, and hands the file straight to your downloads with nothing to install.

How to use it

  1. 1Tick Include microphone first if you want narration — the box is disabled once recording starts.
  2. 2Press Start Recording and choose the screen, window or tab in the browser's own share dialogue.
  3. 3Press Stop when you are done — the button counts the elapsed seconds — then play the result back and download recording.webm.

Example

Input
Start Recording, share one browser tab, stop after ten seconds
Output
A ten-second recording.webm, playable in the preview player above the download link

Video is encoded as VP9 where the browser supports it and plain WebM otherwise; a browser that can capture the screen but cannot encode WebM at all falls back to the generic 'Could not start recording' message. System audio is requested, but whether any arrives is settled by the share dialogue rather than by this page — tab sharing usually offers it, whole-screen sharing often does not. A refused microphone gives 'Microphone unavailable — recording screen only.' and the screen capture carries on. Starting a second recording discards the first, so download one before you begin the next.

What happens to your data

Nothing is streamed out: MediaRecorder delivers the capture in one-second chunks into an array inside the page, those chunks are joined into a single Blob when you stop, and both the preview player and the download link point at a blob URL for it — there is no peer connection and no upload step anywhere in this component. Every captured track is stopped the instant recording ends, which is what clears the browser's sharing indicator, and the previous recording's URL is revoked when you press Start again.

Last updated August 2026

You need to show someone what is happening on your screen — a bug that only appears on your machine, a five-step process nobody wants to read as numbered instructions, a demo for a colleague who is asleep when you are awake. Writing it out takes longer and lands worse than thirty seconds of video.

The decision to make before you press anything is what to share, because the browser asks and it is not a small choice. A whole screen catches everything, including the notification that arrives at the wrong moment. A single window keeps the rest of your desktop out of it. One browser tab is the tightest of the three, and it is also the one most likely to hand over the sound the page is making — audio is settled in that share dialogue rather than on this page.

The second thing to know is that this is one take. There is no pause, no trim and no editing afterwards, so a fumbled opening stays in unless you record the whole thing again. Short takes beat long ones for that reason, and a rehearsal costs less than a repair.

The common mistake is assuming the file will play wherever you send it. What comes out is WebM — fine in any browser, in VLC and in most editors, and liable to be refused by a Mac preview pane, a slide deck or an older phone. Convert it if the recipient is fussy. Your webcam is not in the picture either: this captures the screen and, if you ask for it, your voice.

How it works

Toolvore hands the question of what to capture to the browser itself: the screen capture API opens the picker you already know, and whatever it returns — a screen, a window or a tab, with or without the sound that surface is making — comes back as a live stream. A microphone, if you ticked the box before starting, is requested separately and its track added alongside, and the lot goes to the browser's media recorder, which encodes as it runs and emits the result in one-second pieces that are joined into a single WebM the moment you stop. Two consequences are worth knowing. The encoding happens on your machine while that same machine is drawing whatever you are recording, so a loaded laptop drops frames rather than slowing the video down, and there is no resolution, frame rate or bitrate setting here to compensate with — nothing is re-encoded after the fact. And the microphone sits beside any captured system audio as a second track rather than being mixed down into one, which browsers handle differently; play the result back before you send it anywhere. Ending the share from the browser's own sharing bar is treated as pressing Stop, so the recording is finished rather than lost.

Common use cases

  • Capturing a bug that only reproduces on your own machine, to attach to a ticket
  • Walking a colleague through a multi-step process instead of writing instructions
  • Recording a short product demo for someone in another timezone
  • Narrating feedback over a design while pointing at what you mean
  • Showing support exactly what happens between the click and the error message
  • Keeping a record of a checkout or booking flow that failed halfway

Frequently asked questions

How can I record my screen without installing any software?

A desktop browser can already do it. Chrome, Edge and Firefox expose a screen capture API to any page, and that is what this one uses — no download, no extension, no account. The trade is that it is desktop only: mobile browsers do not offer screen capture to a web page, and rather than failing halfway this page says outright that recording is not supported and points you at a desktop browser. Your operating system still has a say. On macOS the browser itself needs Screen Recording permission under Privacy and Security before the picker will show anything beyond its own windows, and the first attempt often comes back empty until you grant it and restart the browser.

Why is there no sound in my screen recording?

Because two different sounds are involved and only one of them is yours to switch on here. Your voice comes from the microphone, and the box for it has to be ticked before you start — it is locked once recording begins. The sound the computer is making is asked for at the same time as the picture, but whether any arrives is decided in the browser's share dialogue rather than on this page. Sharing a single Chrome tab usually offers a share tab audio checkbox that is not ticked by default; sharing a whole screen often has no such option, and on macOS browsers generally cannot take system audio at all without an extra audio driver. If the sound you want is playing in a tab, share the tab.

How do I convert a WebM recording to MP4?

You need a converter, because nothing here does it — the file comes out as WebM and that is what browsers record. WebM plays in any browser, in VLC and in most video editors, so a lot of the time no conversion is needed. It stumbles elsewhere: the Mac preview pane, slide decks, older phones and upload forms with a strict format list. VLC can do the job through its convert and save option, HandBrake handles it with a preset, and on the command line ffmpeg -i recording.webm -c:v libx264 -c:a aac out.mp4 covers it. Re-encoding costs a generation of quality, which on flat screen content is close to invisible.

Does browser screen recording upload my screen anywhere?

Not from this page. The encoder writes into an array inside the tab, those pieces are joined into one file in memory when you stop, and both the preview player and the download link point at that in-memory copy — there is no upload step and no peer connection anywhere in the component. Every captured track is stopped the instant you press Stop, which is what clears the browser's sharing indicator. Two practical notes. The file is not stored, so download it before you close or leave the tab. And the real exposure is what you shared rather than where the file went: a whole-screen capture records the email preview and the notification that arrives mid-take.

How long can a screen recording be, and how big will the file get?

Nothing on the page caps it — no timer, no size limit, no account tier. Your machine sets the limit instead, because the recording accumulates in the tab's memory until you stop, so a long full-screen capture grows the tab's footprint the whole way through and a very long one can end with the tab being killed and the take lost. Size depends far more on movement than on minutes: screen content compresses well because most pixels do not change between frames, so a still slide costs almost nothing while a scrolling page or an embedded video costs a great deal. For anything past a few minutes, record in sections and download each one before starting the next.

Why does my screen recording look blurry or choppy?

Capture, encoding and whatever you are recording are all competing for the same machine at the same moment, and when it cannot keep up the recorder drops frames rather than falling behind. Sharing one window or one tab instead of a large high-resolution screen is usually the single biggest improvement, followed by closing everything you are not using. Text tends to soften while a page is scrolling and sharpen once it settles, because the codec spends its bits where things are moving. There is no quality slider to raise: no resolution, frame rate or bitrate control exists here, the browser decides what to hand over, and the file is never re-encoded afterwards.

Can I record a video call or a streaming service tab?

There are two separate obstacles. Technically, protected video from a paid streaming service usually comes out black or as an empty rectangle, because that playback path is deliberately kept out of reach of capture. A meeting running in a browser tab records like any other tab; a native desktop meeting app records only if you share its window or the whole screen. Legally, recording other people talking is not a decision you make alone. Consent rules differ by country and some require everyone's, employers often have their own policy, and meeting platforms announce their own recordings to participants while a capture made this way announces nothing. Ask the room first.

Can I pause a recording, or cut the first few seconds off?

Neither, here. It runs from Start to Stop as one continuous take, and the elapsed seconds ticking on the button are the only thing you can watch while it goes. If you fumble the opening, stop and start again — but download anything worth keeping first, because beginning a new recording discards the previous one. Ending the share from the browser's own sharing bar counts as pressing Stop rather than throwing the take away, so the video still appears in the player. To trim afterwards you need an editor, and most of them open WebM directly; convert to MP4 first only if yours refuses.