I have implement an option of Video Conference on my application using the following example: https://github.com/androidthings/sample-videoRTC
basically is is working very well but i have one major issue. the sreaming audio volume is very very low even when i put the maximum volume on my device.
I have tried to check if there is any parameter that can define the audio volume but is was not able to find such parameters beside the AudioBitRate(=32) and the AudioCodec=("OPUS").
These are the parameters that is am using for creating the peerConnection:
peerConnectionParameters =
new PeerConnectionClient.PeerConnectionParameters(true,
false,
false,
videoWidth,
videoHeight,
0,
Integer.parseInt(getString(R.string.pref_maxvideobitratevalue_default)),
getString(R.string.pref_videocodec_default),
true,
false,
Integer.parseInt(getString(R.string.pref_startaudiobitratevalue_default)),
getString(R.string.pref_audiocodec_default),
false,
false,
false,
false,
false,
false,
false,
false,
null);
Is anyone have some idea how can I improve the audio volume?
Ihave tried to replace the default Audio Codec but the result was the same low vloume.