Hi,
i tried to change the audio settings to
navigator.mediaDevices.getUserMedia({
video: ...
audio: {
sampleRate: 48000,
sampleSize: 16,
autoGainControl: false,
channelCount: 2,
echoCancellation: false,
latency: 0,
noiseSuppression: false,
},
I could not hear a change in audio auality, the consumer stats bitrate was always ~ 70k,
[
{
"bitrate": 71888,
"byteCount": 3183750,
"firCount": 0,
"fractionLost": 0,
"kind": "audio",
"mimeType": "audio/opus",
"nackCount": 0,
"nackPacketCount": 0,
"packetCount": 17727,
"packetsDiscarded": 0,
"packetsLost": 0,
"packetsRepaired": 0,
"packetsRetransmitted": 0,
"pliCount": 0,
"roundTripTime": 0.6561279296875,
"score": 10,
"ssrc": 928067862,
"timestamp": 7710998,
"type": "outbound-rtp"
},
{
"bitrate": 73488,
"byteCount": 3568831,
"firCount": 0,
"fractionLost": 0,
"jitter": 0,
"kind": "audio",
"mimeType": "audio/opus",
"nackCount": 0,
"nackPacketCount": 0,
"packetCount": 19425,
"packetsDiscarded": 0,
"packetsLost": 0,
"packetsRepaired": 0,
"packetsRetransmitted": 0,
"pliCount": 0,
"roundTripTime": 0.030517578125,
"score": 10,
"ssrc": 1366832477,
"timestamp": 7710998,
"type": "inbound-rtp"
}
]
]
what else do I need to change to get max quality?