Jitsi在视频会议



我想使用Jitsi-meet在react native视频会议什么是最好的实现方法。目前我正在关注这个链接https://jitsi.github.io/handbook/docs/intro但在这方面,他们使用了android和iOS的本地代码谁能告诉我下一步该怎么做呢?

您提供的链接是jitsi原生SDK的文档。如果你想在react-native项目中实现这个SDK,你应该看看react-native-jitsi-meet plugin。

正如你可以在插件的文档中读到的,只要安装这个插件,你就可以用你的房间url发起呼叫:

componentDidMount() {
setTimeout(() => {
const url = 'https://your.jitsi.server/roomName'; // can also be only room name and will connect to jitsi meet servers
const userInfo = { displayName: 'User', email: 'user@example.com', avatar: 'https:/gravatar.com/avatar/abc123' };
JitsiMeet.call(url, userInfo);
/* You can also use JitsiMeet.audioCall(url) for audio only call */
/* You can programmatically end the call with JitsiMeet.endCall() */
}, 1000);
}

相关内容

  • 没有找到相关文章

最新更新