在完成本地流渲染后,我无法初始化createOffer()



我正在我的项目中开发视频/音频流功能,我正在使用react native webrtc库来实现上述功能。最初,我在ComponentDidMount((上渲染本地流

componentDidMount () {
this.getLocalStream();
}
getLocalStream() {
mediaDevices.enumerateDevices().then(sourceInfos => {
console.log("mediaDevices.enumerateDevices", sourceInfos);
let videoSourceId;
for (let i = 0; i < sourceInfos.length; i++) {
const sourceInfo = sourceInfos[i];
if(sourceInfo.kind === "videoinput" && sourceInfo.facing === (this.state.isFront ? "front" : "environment")) {
videoSourceId = sourceInfo.id;
}
}
mediaDevices.getUserMedia({ 
audio: true, 
// IF simulator/audio call is running for webrtc then video to false.
video: this.state.isSwitching,
facingMode: (this.state.isFront ? "user" : "environment"),
optional: (videoSourceId ? [{sourceId: videoSourceId}] : [])
}
)
.then(stream => { 
InCallManager.start({media: 'audio'});
InCallManager.startRingtone('_BUNDLE_');
if (this.state.isSwitching === false) {
InCallManager.setSpeakerphoneOn(true);
InCallManager.setForceSpeakerphoneOn(true); 
}
this.setState({videoUrl: stream.toURL(),})
localStream = stream;
pc.addStream(localStream);
connectedUser = false;
createPC(this.state.roomID,true);
})
.catch(error => {
// Log error
console.log('Error',error.message);
this.setState({loading: false});
});
});
}

在它成功呈现后,我正在向另一个对等方发起offer((;但是RTCPeerConnection的方法pc.createOffer((无法触发,并且它没有执行其中的函数和逻辑。我尝试了很多方法来触发方法,但都没有成功。

const createPC = (socketId, isOffer) => {  
pcPeers = {
...pcPeers,
[socketId]: pc,
};
if (isOffer){
pc.createOffer(function(desc) {
log("fgf");
console.log('createOffer', desc);
pc.setLocalDescription(desc, function () {
console.log('setLocalDescription', pc.localDescription);
socket.emit('exchange', {'to': socketId, 'sdp': pc.localDescription });
}, logError);
}, logError);
}

// On Add Stream:
pc.onaddstream = event => {
//console.log('onaddstream', event.stream);
const remoteList = this.state.remoteList;
remoteList[socketId] = event.stream.toURL();
this.setState({
remoteList: remoteList,
});
};
// ice candidates
pc.onicecandidate = event => {
log('Howeeeee');
if (event.candidate) {
socket.emit('exchange', { to: socketId, candidate: event.candidate });
}
};
return pc;
}

即使在为方法提供了所有参数之后,也没有被解雇的原因是什么。由于我是React Native的新手,有人能帮助我在哪里犯了错误吗。我们将非常感谢您的帮助。

[编辑]

调用createOffer((时出错。

createOffer((返回Promise值,所以它不使用参数作为回调。

试试这个

if (isOffer){
pc.createOffer()
.then(function(desc) {
console.log("createOffer, desc);
pc.setLocalDescription(desc);
// something to do
}).
.catch(err => console.error(err));
}

此外,我建议阅读有关createOffer((的MDN文档。

我通过将react native webrtc版本降级到1.67.1来解决我的问题,该版本与react native0.59.0非常兼容。

相关内容

  • 没有找到相关文章

最新更新