Photon Voice Chat Volume

Hi,
My chat volume is very low.I tried this from an old post.
At the start of
The
Any ideas?
Thanx,
Steve
My chat volume is very low.I tried this from an old post.
At the start of
OnAudioFrame
method in "PhotonVoiceNetworks.cs" I added these lines:
for(int i =0; i < frame.Length; i++) { frame[i] *= (AppSettings.VoiceChatVolume * 5); }Only the
AppSettings
gives error( redlined ).The rest of it seems ok. The .VoiceChatVolume
is Not redlined.The
AppSettings
isn't found in the project search.Any ideas?
Thanx,
Steve
0
Comments
Thank you for choosing Photon!
Just replace
AppSettings.VoiceChatVolume * 5
with a gain factor (static or variable) of your choice.Get rid of
AppSettings.VoiceChatVolume
which is part of another developer's custom codebase.Thanx for the answer.I tried this: no errors /game runs but no volume increase.I tried different variables(5 or 10 or 20 etc)
But no difference.Will keep trying.
Thanx again,
Steve
Thank you for choosing Photon and your feedback!
It's good that you confirm that it works for you.
We use English only on the forum, thank you for your understanding.
Could you try importing this Unity package into your Photon Voice 2 project and add a MicAmplifier component attached to the same GameObject as the Recorder.
Then tweak values of "Amplification Factor" or "Boost Value".
Thanx for the help.