连接已弃用:Peer JS

问题描述 投票:0回答:1

我正在创建一个视频聊天应用程序,我需要具有屏幕共享功能。问题是当我进行屏幕共享时,更新的流将无法通过“连接”方法供其他对等方使用。我需要一种方法来替换当前与我连接的所有对等点的流。

下面是与之相关的代码。它说。连接已弃用

 const switchStream = (stream: MediaStream) => {
setStream(stream);

//have to repalce the current stream for every conection
// Check if currentPeer exists and has connections before proceeding
if (currentPeer && currentPeer.connections) {
  // Loop through each connection
  Object.values(currentPeer.connections).forEach((connection: any) => {
    // Find the video track in the stream
    const videoTrack: any = stream
      ?.getTracks()
      .find((track: any) => track.kind === "video");

    // Replace the video track for each sender in the connection
    connection[0].peerConnection.getSenders().forEach((sender: any) => {
      if (sender.track && sender.track.kind === "video") {
        sender
          .replaceTrack(videoTrack)
          .catch((err: any) => console.error(err));
      }
    });
  });
} else {
  console.error("currentPeer or currentPeer.connections is undefined.");
}

};

webrtc peerjs
1个回答
0
投票

替代解决方案:我没有将当前流替换为显示媒体流,而是将屏幕共享作为新对等点连接到同一房间。然后实时屏幕共享源将共享给所有连接的对等点。

© www.soinside.com 2019 - 2024. All rights reserved.