2

我正在开发网络研讨会直播服务。我使用 Ant Media Server 将 WebRTC 转码为 RTMP。现在我正在制作新的广播实例。

this.antMediaService.createLiveStream('LiveApp', 
this.newStream).subscribe((response) => {
      this.streamId = 'test';
      this.webRTCAdaptor.publish(this.streamId);
    }, (error) => {
      console.log('unexpected error', error);
    });

但是我遇到了这样的问题

无法加载http://domain:5080/LiveApp/rest/broadcast/create:对预检请求的响应未通过访问控制检查:请求的资源上不存在“Access-Control-Allow-Origin”标头。因此,不允许访问源“ http://localhost:4300 ”。

我该如何解决?谢谢

4

0 回答 0