You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when a conference starts all the audio sliders are at full throttle. This means that if you are in a conference with N participants and one of them has an audio volume much lower than the others, then you have to lower the audio on N-1 participants and increase the overall volume
would it possible to start with all the audio sliders at half throttle so that in the previous case we can just increase the volume of the single problematic participant please
TIA
Beppe
The text was updated successfully, but these errors were encountered:
Here's a summary of the discussion on the maling list.
HTMLMediaElement.volume, which is what the volume slider controls, does not go higher than 100%; https://xkcd.com/670/
a simple workaround would be to make the videos start at 70% volume, but that would mean that Galène is less loud than other applications, which could be annoying;
a different UI is therefore needed, such as a global slider that controls all videos' volumes; it's not clear (at least to me) what this UI should look like.
HTMLMediaElement.volume does no go above 100%, but actually the client could route audio through an AudioContext to allow for over-amplification. Is this something that Galène would like to include ?
// Create audio context with a gain node to over-amplify to 120%constaudioCtx=newAudioContext();constgainNode=audioCtx.createGain();gainNode.gain.value=1.2;// Connect input and outputaudioCtx.createMediaElementSource(videoElement).connect(gainNode);gainNode.connect(audioCtx.destination);
Hi,
when a conference starts all the audio sliders are at full throttle. This means that if you are in a conference with N participants and one of them has an audio volume much lower than the others, then you have to lower the audio on N-1 participants and increase the overall volume
would it possible to start with all the audio sliders at half throttle so that in the previous case we can just increase the volume of the single problematic participant please
TIA
Beppe
The text was updated successfully, but these errors were encountered: