Multiple Consumers In Same Transport

Is it possible send and consume two streams in same transport,? I was trying to implement this in ethan91 mediasoup record demo.If anyone knows please answer

Yes you can send and receive multiple streams to a transport but it is recommended to send and receive on different transports. So you can send multiple streams on one transport and receive multiple streams on one transport but don’t mix them.

The better way is to keep max 3,4 streams on a transport otherwise i have noticed it lags the streams.

Thanks @zaidiqbal