Media

Media

Browse 17 professional tools

ASCII Art Generator

Media

Audio Editor

Media

Barcode Generator

Media

Image Background Remover

Media

Image Compressor

Media

Image to Base64 Converter

Media

Image to Text (OCR)

Media

Instrument Tuner

Media

Metronome

Media

Noise Generator

Media

PDF Tools

Media

QR Code Generator

Media

QR Code Scanner

Media

Screen Recorder

Media

Sound Synthesizer

Media

Text to Speech

Media

Video to GIF

Media

Media tools handle the operational steps you take with images, audio, and video before publishing or sharing. The recurring trade-off is "size vs quality" — WebP at quality 85 is the right default for almost every web image (10× smaller than PNG, visually indistinguishable from JPEG). For audio, target -16 to -19 LUFS for podcast; -14 for music streaming. For animated content, MP4 beats GIF by 5-50× in size.

Images

WebP at quality 85-90 is the modern default; PNG only for sharp-edged content with transparency that needs pixel-perfect. Background removal uses U²-Net / BiRefNet WebAssembly models in-browser (no upload).

Generators

QR codes (with logo, vCard, WiFi), EAN-13 / Code 128 / UPC barcodes with proper checksums, 7-file favicon packages for modern browsers. Audio: white/pink/brown noise generator with sleep timer; subtractive synthesizer for sound effects.

Video & audio editing

GIF conversion only when the recipient cannot handle MP4 (GitHub README, Slack-old, email); for everything modern use MP4. Audio editor handles trim/normalize/compress at LUFS targets; pitch detection via YIN algorithm for tuner.

Documents

Merge / split / rotate / compress / annotate PDFs locally (no upload). OCR via Tesseract WebAssembly — accuracy ~88-92% for printed text, far less for handwriting. For production-grade OCR, use cloud services.

Frequently asked questions

Why is my image larger after "compression"?

Almost always: you converted from JPEG to PNG, which is lossless and bigger on photos. Or the source was already optimally compressed. Always check file size after compression — if it grew, keep the original. Photos: JPEG or WebP-lossy. Screenshots with text or icons: PNG or WebP-lossless.

Should I use GIF or MP4 for animated content?

MP4 unless the destination cannot render video. GIFs are 5-50× larger for equivalent quality due to 256-color palette and per-frame encoding. GitHub READMEs and email previews still favor GIF for compatibility; Twitter/X auto-converts GIF to MP4 anyway.

What is LUFS and do I care?

LUFS is perceptual loudness, what your ear hears. Streaming platforms normalize to a LUFS target (Spotify -14, Apple Music -16, podcasts -16 to -19). Master to peak-only and your audio gets turned down by the platform; master to the target and you stay at the level you intended.

How private is in-browser OCR vs cloud OCR?

Browser OCR (Tesseract WASM) keeps the image local — useful for medical records, financial documents, anything you would not upload. Cloud OCR (Google Vision, AWS Textract) is 5-10% more accurate but the image hits their servers. Pick based on sensitivity of content.

Last updated · E-Utils editorial team