About Change Video Volume
AntiUpload's Video Volume Changer adjusts the audio loudness of a video file without re-encoding the picture. We stream-copy the video stream (`-c:v copy`) which preserves it bit-for-bit identical to the source — no quality loss, no perceptible delay — and re-encode only the audio with the `volume=N` filter applied. The result: a video that's louder (or quieter) than the original, with everything else exactly the same. This is the inverse of how most online tools handle volume change — they re-encode the entire video, which is slow and visibly degrades quality.
Five preset multipliers cover the dominant use cases: 0.25× (quarter volume — useful for muffling background music or normalising bedroom-recorded content), 0.5× (half volume — phone speakers don't get as loud as headphones), 1.5× (50% louder — fixes quietly-recorded interviews), 2× (double — bumps quiet phone recordings to listenable), 3× (triple — last resort for very quiet content). We deliberately omit 1.0× because "no change" isn't a useful UI option, and we cap at 3× because higher multipliers usually clip the signal (digital distortion) on already-loud source.
Why no LUFS-target loudness normalisation (the EBU R128 / streaming-platform mastering spec)? It's a bigger feature that needs a two-pass workflow (measure → re-encode against target) and a small extra UI for picking the target (-14 LUFS for streaming, -16 for podcast, -23 for broadcast). That's on the roadmap as a separate mode for this tool. For now, gain mode (the volume filter) handles the everyday "my audio is too quiet" case in one click. Audio codec adapts to the container — AAC for MP4 / MOV / MKV / AVI outputs, libvorbis for WebM (which doesn't legally accept AAC).
How it works
- Drop your videoAccepts MP4, MOV, WebM, MKV, AVI, M4V, FLV. The video stream is preserved bit-for-bit; only the audio gets re-encoded. Processing is fast because we never decode video frames.
- Pick a volume multiplier0.25× / 0.5× / 1.5× / 2× / 3×. 2× is the typical "make this quiet phone recording listenable" multiplier. 0.5× tames overly-loud captures. 3× is the cap — higher would clip.
- Click Apply Nx volumeAudio re-encodes with the volume filter. Video stream-copies. The whole operation is dominated by file I/O, not CPU — a 1-hour HD video typically completes in 10-30 seconds.
- Download the volume-adjusted fileOutput container matches input: MP4 in → MP4 out, WebM in → WebM out. Visual quality is bit-identical to the source — no re-encoding artifacts on the picture.