Mediasoup doesn't support in chrome version 140

It appears that media soup doesn’t work for users with Chrome Version 140 and downgrading the chrome solved the issue.

The error on the client console -
InvalidAccessError: Failed to execute ‘setRemoteDescription’ on ‘RTCPeerConnection’: Failed to set remote answer sdp: Failed to set recv parameters for m-section with mid=‘0’.

Code Section which triggers the error
if (storeUser.value && !storeUser.value.admin) {
const track = previewVideo.value.getVideoTracks()[0];
console.log(“track is”, track)
producer = await transport.produce({ track });
}

console.log(“track sending for audio”)

const audioTrack = previewAudio.value.getAudioTracks()[0]

audioProducer = await transport.produce({ track: audioTrack })

Did you search in the Announcements topic or did you check the latest PRs in mediasoup-client? I write things for something but if people don’t read them there is nothing I can do.

Thank you, tried the new version 3.15.0, it worked.
Applogies i will make sure to check everywhere before posting.

I suggest subscribing to the Announcements category of this forum to get updates like this one.

1 Like