Online Audio Recorder
Record audio from your microphone using the browser MediaRecorder API. Listen back, then download as a WebM or OGG file.
How to use Audio Recorder
- Click "Record" and, when the browser asks, allow access to your microphone — the prompt appears once per site.
- Speak, sing, or capture whatever you need. A running timer shows how long the recording has been going.
- Click "Stop" when you are finished. The clip is finalised in memory, ready to review.
- Play it back with the built-in audio player to check the result before saving.
- Click "Download" to save the file (WebM or OGG) to your device. The MediaRecorder Blob lived only in this tab, so the audio was never transmitted anywhere.
A voice recorder that keeps the audio to itself
Press record, talk, and download a clip — that is the entire workflow, with no app to install and no account to create. What makes this recorder worth choosing over the dozens of others is where the audio lives: the MediaRecorder API encodes it inside this tab, so an interview, a confidential voice memo, or a rough song idea is captured without a server ever hearing it.
How browser audio recording works
Two browser features do the work. First, getUserMedia asks your operating system for a live microphone stream after you grant permission. Second, the MediaRecorder API encodes that stream into compressed audio chunks as you speak, then stitches them into a single file when you stop. The finished clip is held as an in-memory Blob and turned into a temporary download link — at no point is it sent over the network.
Microphone permission and HTTPS
A live microphone stream is only handed out on secure (HTTPS) pages, and the browser asks for your consent the first time getUserMedia runs. Clicked "Block" by mistake? Use the microphone icon beside the URL to flip the setting back to "Allow," then refresh. That choice is stored for this domain, so return visits start recording without another prompt.
The output format: WebM and OGG
Live recording lands in WebM (almost always Opus) or, on a few browsers, OGG. Opus was designed for exactly this kind of job — it stays intelligible for speech at very low bitrates, so an hour of interview audio is a modest download. MP3 and WAV are not something a browser can author on the fly; if a workflow truly needs them, transcode the saved clip in Audacity or FFmpeg after the fact.
Tips for a clean recording
- Use a real microphone. A headset or USB mic beats a built-in laptop mic for clarity and noise rejection.
- Find a quiet space. Soft furnishings reduce echo; turn off fans and notifications.
- Watch your distance. Stay a steady hand-span from the mic to avoid volume swings and popping.
- Record in segments. Shorter clips use less memory and are far easier to trim and reuse later.
Recording confidential audio safely
Voice carries things text does not — a source's identity, a candid aside, the emotion in a message. That is why a recorder you can trust matters more than one you can install fastest. Because the clip exists only as an in-tab Blob until you choose to save it, you can record a sensitive interview or a private voice note knowing the audio was never copied to a server you do not control. If the subject asks you to delete a take, closing the tab genuinely erases it.
Related media tools
- Audio Trimmer — top and tail your recording, or pull out a single quote from an interview.
- Speech to Text — turn dictation into editable text (note: that one is cloud-processed).
- Screen Recorder — narrate a walkthrough with your voice over the picture.
Frequently asked questions
Is my recording uploaded to a server?
What file format do I get?
How do I convert the recording to MP3?
Why was my microphone access denied?
Which browsers and devices are supported?
How long can I record?
How can I improve the recording quality?
Can I edit or trim the clip afterward?
Related tools
More tools you might find useful in the same flow.
Screen Recorder
Screen recorder online — capture a browser tab, window, or your entire screen and download the recording as WebM. Free, no install and no upload needed.
Webcam Snapshot
Take a webcam photo or screenshot right in your browser and save it as a PNG. Front or back camera, mirror preview, no upload — nothing leaves your device.
Video Mute
Mute video online — strip the audio track from MP4, WebM, or MOV files and download a silent copy in seconds. Free, and files never leave your device.
Audio Trimmer
Audio trimmer online — cut a clip from an MP3 or WAV file by setting start and end points, then download it. Free, and audio never leaves your browser.
Built by Muhammad Tahir · About