VideoJS HTML5 Video JS How to boost volume above maximum?

Viewed 2311

Its possible there's no solution to this but I thought I'd inquire anyway. Sometimes a video is really quiet and if I turn the volume of my computer up accordingly then other sounds I have become way too loud as a result. It would be nice to be able to boost the volume above maximum.

I did a search on google which literally turned up nothing at all, not even results related to videojs at all in fact. Some videos my Mac is almost at max volume to hear the video's speech well so it would not be feasible to start with everything at a lower volume and adjust accordingly.

I tried with:

   var video = document.getElementById("Video1");
   video.volume = 1.0;

And setting it to anything above 1.0 but the video then fails to open at all:

   var video = document.getElementById("Video1");
   video.volume = 1.4;  /// 2.0 etc
2 Answers
Related