无法创建电话 RTC 客户端



我在Github上找到了一个非常好的项目,但我不能完全理解。

我安装了一个信号服务器(socket.io)和一个回合服务器。我正在尝试为IOS制作一个应用程序,我使用的代码如下:

<video height="300" id="localVideo"></video>
<video id="remotesVideos"></video>
<script type="text/javascript">
  document.addEventListener("deviceready", onDeviceReady, false);
  function onDeviceReady() {
    var phonertc = cordova.require('com.dooble.phonertc.PhoneRTC');
    var socket = io('http://mysait.com:3000');
    socket.on("connect", function() {
      socket.emit("join", "myroom");
      socket.on("message", function(message) {
        console.log("GOT MESSAGE:");
        message.payload.sdp = message.payload.sdp.replace(/(rn|n|r)/gm,"");
        // when a message is received from the signaling server,
        // notify the PhoneRTC plugin.
        phonertc.receiveMessage(message.payload);
      });
    });
    socket.on('connect',function() {
      alert ('is connect!');
    });
    phonertc.call({
      isInitator: true, // Caller or callee?
      turn: {
        host: 'turn:mysait.com:3478',
        username: 'test',
        password: 'test'
      },
      sendMessageCallback: function (data) {
        // PhoneRTC wants to send a message to your target, use
        // your signaling server here to send the message.
        console.log(data);
        socket.emit("message", data);
      },
      answerCallback: function () {
        alert('Callee answered!');
      },
      disconnectCallback: function () {
        alert('Call disconnected!');
      },
      video: {  // Remove this property if you don't want video chat
        localVideo: document.getElementById('localVideo'),
        remoteVideo: document.getElementById('remoteVideo')
      }
    });
  }
</script>

当连接到服务器时,我有一个警报,但我看不到本地和远程视频。有人能提出可能出了什么问题吗?你能给我发一个客户端的例子吗?我在这里找不到。

看起来这是一个非常旧的演示应用程序版本。正确的链接是:https://github.com/alongubkin/phonertc/tree/master/demo

最新更新