Volume Boosting by Browser
Browsers differ more than you would expect in what they permit. Chromium builds can capture and process the sound coming from another tab; Firefox and Safari cannot. All four handle files you load yourself through the Web Audio API. Knowing which case you are in saves a lot of time.
What actually differs between browsers
For playing a file you have loaded yourself, the four major browsers are equivalent: they all implement the Web Audio API and will process the same graph identically. Differences in perceived loudness between them almost always trace back to the operating system holding a separate level for each application rather than to anything the browser itself is doing.
The meaningful split is over capture. Chromium-based browsers let a page request a tab and receive its sound alongside the video; Firefox and Safari implement screen sharing without offering that track at all. This is a deliberate difference in approach rather than an oversight, and no flag or preference changes it.
Audio capability by browser
| Browser | Boost a loaded file | Capture and boost tab audio | Per-tab mute |
|---|---|---|---|
| Chrome (desktop) | Yes | Yes, via tab sharing | Yes |
| Edge (desktop) | Yes | Yes, via tab sharing | Yes |
| Firefox (desktop) | Yes | No — no tab audio capture | Yes |
| Safari (macOS) | Yes | No | Yes |
| Any mobile browser | Yes | No — desktop only | Varies |
Choose your browser
Why tab capture is restricted
Letting a web page listen to another tab is a serious privacy concern, so the capability is gated behind an explicit user gesture: you must actively pick a tab from a browser-drawn dialog and tick a box to share its audio. No page can start capturing on its own.
Firefox and Safari have not implemented audio capture in their screen-sharing APIs at all. That is a deliberate difference in approach, not a bug, and there is no flag or setting to enable it.
Related pages
- Volume BoosterVolume BoosterRaise the level of any local audio or video file, with a headroom meter that shows the cost.
- TroubleshootingBrowser too quietPer-app volume and per-tab settings, not the browser itself.
- StreamingStreamingPlatform normalization settings, and which services can be boosted at all.
- DevicesDevicesThe system settings that actually raise output level on each platform.
- Audio ToolsAudio ToolsNine focused tools, each running a different processing chain in your browser.
Last updated