Zoomtopia is here. Unlock the transformative power of generative AI, helping you connect, collaborate, and Work Happy with AI Companion.
Register nowEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Learn moreKeep your Zoom app up to date to access the latest features.
Download Center Download the Zoom appDownload hi-res images and animations to elevate your next Zoom meeting.
Browse Backgrounds Zoom Virtual BackgroundsEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Zoom AI Companion2021-10-28 10:44 AM
When I join the meeting, I can only see the host's camera, I want to see my camera, it's possible?
there is a screenshot's meeting
there is the way that I use .init
ZoomMtg.init({
leaveUrl: livestreamGuid,
isSupportAV: true,
isSupportChat: false,
debug: true,
success: (success) => {
console.log("zoom initiated", success);
ZoomMtg.join({
signature: signature,
meetingNumber: meeting_id,
userName: me.name,
apiKey: apiKey,
passWord: zoom_password,
success: (success) => {
console.log("joined", success);
setIsZoomJoinedSuccess(true);
let zoomUserId;
ZoomMtg.getCurrentUser({
success: ({ result: { currentUser } }) =>
(zoomUserId = currentUser.userId),
error: (e) => console.log("error to get user from zoom", e),
});
ZoomMtg.mute({
userId: zoomUserId,
mute: true,
success: (e) => console.log("succes to mute user", e),
error: (e) => console.log("error to mute user ", e),
});
},
error: (error) => {
console.log(error);
},
});
},
error: (error) => {
console.log(error);
},
});
there is the way that I load zoom libs
ZoomMtg.setZoomJSLib("https://source.zoom.us/1.9.9/lib", "/av");
ZoomMtg.preLoadWasm();
ZoomMtg.prepareJssdk();
ZoomMtg.i18n.load("pt-PT");
ZoomMtg.i18n.reload("pt-PT");
2021-11-01 06:18 AM
The meeting maybe is in focus mode, or your laptop isn't available gallery view.
2022-01-29 09:51 PM
Hi, from where are getting meetingNumber i was working in this project and unable to figure out how to get it. Can you help