mediasoup_v3_example icon indicating copy to clipboard operation
mediasoup_v3_example copied to clipboard

After deploying on server, not working multiparty.

Open sraza295 opened this issue 4 years ago • 3 comments

I can see my own video only. Remote's video is not coming.

sraza295 avatar Jun 26 '20 18:06 sraza295

I think I have the same problem issues: #3

Do you get this on you server?

-- createConsumerTransport ---
-- create transport id=c2325aaa-2c37-4e88-b257-b12f848b22a3
consumerTransports count=1
-- consume --kind=video
-- consume, but video producer NOT READY
-- consume --kind=audio
-- consume, but audio producer NOT READY

codemeasandwich avatar Jun 27 '20 20:06 codemeasandwich

It seems that the necessary ports on the server side have not been opened. Are you releasing udp of rtcMaxPort(59999) from rtcMinPort(10000)? Also, tcp needs to be released as well.

https://mediasoup.org/documentation/v3/mediasoup/api/

In the sample, there are no parameters when creating a worker.

nao-akasaka avatar Jul 09 '20 06:07 nao-akasaka

Make sure to set listenIps from 127.0.0.1 to your server's IP. Restart and it should work. You were dealing the traffic being blocked by your firewall router.

Demodian avatar Sep 17 '20 18:09 Demodian