audio & video tools

Record, trim, convert and clean up media with WebAudio and WebCodecs.

20 tools · free · no sign-up · nothing uploaded

The audio tools here run on the Web Audio API, which decodes whatever you give it into raw 32-bit floating-point PCM samples before doing anything else. That is why editing feels instant once the file has loaded — every operation after decode is arithmetic on an array in memory, with no seeking or container parsing — and it is also why memory, rather than file size, is the real constraint. Five minutes of 44.1 kHz stereo decodes to roughly 50 MB of floats no matter whether it arrived as a 4 MB MP3 or a 50 MB WAV.

That decode step also determines what is lossless and what is not. Trimming, joining and normalising all operate on the decoded samples, so exporting to WAV afterwards preserves exactly what you heard in the preview. Exporting to MP3 re-encodes, which means a fresh generation of lossy compression on top of whatever the source already had. If you are going to run several edits in sequence, keep WAV between the steps and only encode to MP3 at the very end.

Loudness is the part people most often get wrong. Peak normalisation raises the file until its single loudest sample hits your target — which does nothing for perceived volume if that peak is one stray click. Loudness normalisation measures the average across the whole programme and is what actually makes something sound louder. The widely used targets are around −16 LUFS for stereo podcasts and −19 LUFS for mono, while the major streaming platforms normalise playback to somewhere near −14 LUFS, which is why mastering a track louder than that gains you nothing on Spotify.

Video is the one area where the browser is genuinely at a disadvantage. Decoding is hardware-accelerated on virtually every device; encoding often is not, so compressing video runs on the CPU and can take longer than the clip itself. For a 30-second screen recording that is fine. For a 40-minute 4K file, a desktop encoder will still finish first — that is an honest limitation, not something a better web tool fixes.

One more expectation to set: vocal removal works by cancelling what is identical in the left and right channels, which is where a centre-panned lead vocal lives. On older mixes with a dry centred vocal it can be startlingly effective. On modern productions with stereo-widened, heavily reverbed vocals, it removes some of the vocal and a fair amount of the bass and snare along with it. It is a useful trick, not stem separation.

Choosing between the audio editors

Several of these accept the same files. What differs is the operation:

ToolOperationLossless to WAV?
MP3 Cutter & Audio TrimmerCut a region, apply fadesYes
Audio JoinerConcatenate with gaps or crossfadeYes
Audio NormalizerRaise level to a peak or LUFS targetYes
Silence RemoverDetect and delete quiet sectionsYes
Audio Speed & Pitch ChangerTime-stretch or pitch-shiftResampled
Audio ConverterChange container and codecOnly if target is WAV
Vocal RemoverMid/side cancellationAlters the mix
Chain edits in WAV, then encode to MP3 once at the end to avoid stacking lossy generations.

All 20 tools in this category

Audio Converter

Free online audio converter: M4A, WAV, OGG, FLAC and more to MP3 (128–320 kbps) or lossless WAV. Batch conversion with ZIP download — nothing is uploaded.

Audio Joiner

Free online audio joiner: merge MP3, WAV and M4A files with reordering, crossfade or silence gaps, and MP3/WAV export — no upload, no file size limit.

Audio Normalizer

Boost quiet audio to a target peak or loudness without clipping — in your browser, nothing uploaded.

Audio Speed & Pitch Changer

Free online audio speed changer and pitch shifter: change tempo without pitch (0.5×–2×), shift pitch in semitones without changing speed, preview, and export MP3 or WAV — no upload.

Free Video Compressor

Free online video compressor and trimmer. Runs entirely in your browser — no files uploaded to any server.

Microphone Test

Free online microphone test with a live volume meter, waveform and record-and-playback check. Nothing is uploaded.

MP3 Cutter & Audio Trimmer

Free online audio cutter and ringtone maker. Trim MP3, WAV and M4A on a visual waveform, add fades, and export MP3 or WAV — nothing is uploaded.

Online Metronome

Free online metronome with sample-accurate WebAudio timing, 30–300 BPM, time signatures, accented downbeats, subdivisions and tap tempo.

Online Screen Recorder

Free online screen recorder with trim and crop editing. No watermark, no time limit, no sign-up — recordings never leave your device.

Online Voice Recorder

Free online voice recorder with live waveform. Record from any microphone, pause and resume, and download MP3, WAV or WebM — nothing is uploaded.

Scrolling Website Video Generator

Free scrolling website video generator. Upload a full-page screenshot or paste a URL, frame it in a browser or phone mockup, and export a smooth scroll video for social media — no watermark.

Silence Remover

Automatically detect and remove silent sections from podcasts and recordings — right in your browser, nothing uploaded.

Text to Speech

Free online text-to-speech reader using your device's built-in voices, with adjustable speed and pitch and live word highlighting. Nothing is uploaded.

Video to MP3 Converter

Convert video files to MP3 audio in-browser. No upload, no server. Supports MP4, MKV, MOV, AVI, WebM.

Vocal Remover

Remove vocals from a stereo song to create an instrumental or karaoke track, entirely client-side.

Webcam Test

Free online webcam test: live preview, resolution and frame-rate readout, camera switching, mirroring and snapshots. Nothing is recorded or uploaded.

White Noise Machine

Free online white noise machine: white, pink and brown noise plus rain, ocean and fan sounds, with a mixer and sleep timer. Generated locally — no streaming, no account.

Common questions

Why does my exported MP3 sound slightly different from the preview?

The preview plays decoded PCM directly; the export re-encodes it to MP3. That encoding step is lossy, so a small amount of high-frequency detail is discarded. Export to WAV if you need the output to match the preview exactly.

Why is video compression so much slower than audio?

Because your device almost certainly has hardware acceleration for video decoding but not for encoding in the browser. The encode runs on the CPU, frame by frame. Shorter clips and lower output resolutions finish proportionally faster.

Can the screen recorder capture system audio?

That depends on your browser and operating system, not on the tool. Chrome on Windows and ChromeOS can share tab or system audio; on macOS the browser is generally limited to tab audio, and capturing full system output needs an OS-level virtual audio device.

How long a recording can I make?

Until you run low on disk or memory, since the recording is buffered locally. There is no imposed time limit and no watermark, but very long sessions are safer recorded in segments.