You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I modified the single port configuration, but the video does not come out. My modifications are as follows:
1、in mediasoup/worker.ts:
let webRtcServerOptions =
{
listenInfos :
[
{
protocol : udp,
ip : '0.0.0.0',
announcedIp : '',
port : 44444
I modified the single port configuration, but the video does not come out. My modifications are as follows:
1、in mediasoup/worker.ts:
let webRtcServerOptions =
{
listenInfos :
[
{
protocol : udp,
ip : '0.0.0.0',
announcedIp : '',
port : 44444
}
2、in mediasoup/webrtc.transport.ts
const webrtcserver = worker.appData.webRtcServer as types.WebRtcServer;
const transport = await router.createWebRtcTransport({
webRtcServer: webrtcserver, // webrtcserver here...
listenIps: listenIps,
numSctpStreams: { OS: 1024, MIS: 1024 },
enableUdp: true,
enableTcp: false,
preferUdp: true,
enableSctp:true,
initialAvailableOutgoingBitrate,
});
After the modification, both the video and audio cannot be displayed
The text was updated successfully, but these errors were encountered: