Zoom Meetings
cancel
Showing results for 
Search instead for 
Did you mean: 

What are Zoom Meetings?

Zoom Meetings are a simplified video conferencing solution for an optimized virtual meeting experience. Explore the Zoom Community's Recent Activity below to join the Meetings conversation and connect with other members. If you're still looking for support, browse our Zoom Meetings support articles or start a new discussion below!

Recent Activity

Resolved! flutter when join a meeting. "MEETING_STATUS_IDLE - No meeting is running" when meeting is active

flutter_zoom_sdk: ^1.1.0+4initilize zoom sdk in flutter using codejoinMeeting(BuildContext context) {bool _isMeetingEnded(String status) {var result = false;if (Platform.isAndroid)result = status == "MEETING_STATUS_DISCONNECTING" || status == "MEETIN... Show more

flutter_zoom_sdk: ^1.1.0+4

initilize zoom sdk in flutter using code

joinMeeting(BuildContext context) {
bool _isMeetingEnded(String status) {
var result = false;

if (Platform.isAndroid)
result = status == "MEETING_STATUS_DISCONNECTING" || status == "MEETING_STATUS_FAILED";
else
result = status == "MEETING_STATUS_IDLE";

return result;
}
if(meetingNumber!.isNotEmpty && meetingPassword!.isNotEmpty){
ZoomOptions zoomOptions = new ZoomOptions(
domain: "zoom.us",
appKey: appKey,
appSecret: appSecret,
);
var meetingOptions = new ZoomMeetingOptions(
userId: 'username', //pass username for join meeting only --- Any name eg:- EVILRATT.
meetingId: meetingNumber, //pass meeting id for join meeting only
meetingPassword: meetingPassword, //pass meeting password for join meeting only
disableDialIn: "true",
disableDrive: "true",
disableInvite: "true",
disableShare: "true",
disableTitlebar: "false",
viewOptions: "true",
noAudio: "false",
noDisconnectAudio: "false"
);

var zoom = ZoomView();
zoom.initZoom(zoomOptions).then((results) {
if(results[0] == 0) {
zoom.onMeetingStatus().listen((status) {
print("[Meeting Status Stream] : " + status[0] + " - " + status[1]);
if (_isMeetingEnded(status[0])) {
print("[Meeting Status] :- Ended");
timer?.cancel();
}
});
print("listen on event channel");
zoom.joinMeeting(meetingOptions).then((joinMeetingResult) {
timer = Timer.periodic(new Duration(seconds: 2), (timer) {
zoom.meetingStatus(meetingOptions.meetingId!)
.then((status) {
print("[Meeting Status Polling] : " + status[0] + " - " + status[1]);
});
});
});
}
}).catchError((error) {
print("[Error Generated] : " + error);
});
}else{
if(meetingNumber!.isEmpty){
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
content: Text("Enter a valid meeting id to continue."),
));
}
else if(meetingPassword!.isEmpty){
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
content: Text("Enter a meeting password to start."),
));
}
}

}


Show less

reply-icon Latest Reply - 

About Contracts

Is it against the Code to install multiple owners in one company?

recurring series being deleted even when single occurrence has been chosen when deleting one date

Has anyone else run into this problem? You have a recurring meeting setup from within an Outlook calendar invite, you've also included a zoom which is recurring since the Outlook is set up as recurring ........ then you need to cancel one of those re... Show more

Has anyone else run into this problem? You have a recurring meeting setup from within an Outlook calendar invite, you've also included a zoom which is recurring since the Outlook is set up as recurring ........ then you need to cancel one of those recurring dates, let's say it falls on Christmas Day. You open that Christmas Day invite on the Outlook calendar, choose cancel single occurrence only, get the message that your zoom will be deleted but you can recover it within 7 days..... you go ahead and cancel that ONE date/occurrence but then it actually cancels all the recurring zoom links.

I'm having to go back to my Recently Deleted folder in my zoom account and then choose to recover all occurrences; otherwise when the next scheduled meeting is set to happen and those invited try to login to the zoom they get an error message because the recurring link was deleted .................. but I truly only asked it to only delete that one single occurrence ......


Show less

reply-icon Latest Reply - 

Attendees Can't Get Into Meetings

Attendees can't get into my meetings - it says that the host has another meeting in progress. What the???I start meetings from my Zoom app on my Windows 11 Pro laptop. I send out invites from the Invite link that the Zoom app gives me for each meetin... Show more

Attendees can't get into my meetings - it says that the host has another meeting in progress. What the???

I start meetings from my Zoom app on my Windows 11 Pro laptop. I send out invites from the Invite link that the Zoom app gives me for each meeting. But no one can get in using that link - it says that I've got another meeting in progress, which I don't. What is going on and how do I fix this???


Show less

zoomが40分で終了すると、新しいzoomを始めるときにすぐ出来るときとできない時がある

無料ユーザーで40分でzoomが終了して、すぐ次のzoomが出来る場合とできない場合があるのですが条件はありますか。

reply-icon Latest Reply - 

Camera problem person cannot see me

My camera is on and working. It is working when I run a test meeting, but during my meeting My teacher cannot see me and when I click on start video a message "video camera cannot be found" pops up  but my camera is on and I can see myself.

reply-icon Latest Reply - 

Resolved! "Signed out because your account is signed in from another device" during meeting

I was in the middle of a meeting that had been going for an hour and I received a Zoom popup message saying, "You have been signed out because your account is signed in from another device". Very odd, as this wasn't the case. All my devices were with... Show more

I was in the middle of a meeting that had been going for an hour and I received a Zoom popup message saying, "You have been signed out because your account is signed in from another device".

 

Very odd, as this wasn't the case. All my devices were with me in the room and switched off. My meeting continued as normal. Never seen this before, was it a security issue?

Zoom issue.png

 


Show less

reply-icon Latest Reply - 

Can't get attendees to receive email about the meeting

Can someone explain why when I set up a meeting and put in attendees emails in the "attendees" box and then click "save", they do not ever receive an email notification? I am setting up from my laptop.I have watched all of the tutorials. Show more

Can someone explain why when I set up a meeting and put in attendees emails in the "attendees" box and then click "save",  they do not ever receive an email notification?  I am setting up from my laptop.

I have watched all of the tutorials.


Show less

reply-icon Latest Reply - 

Resolved! Why can't an 'Owner' see all Users future meetings? ANy ideas?

I have the role 'Owner' for our company account. When I look at future meetings of other users on the https://zoom.us/meeting#/upcoming page I can only see some of them. All of us are licensed, all other users are 'Members'. Any ideas on how to see a... Show more

I have the role 'Owner' for our company account.  When I look at future meetings of other users on the https://zoom.us/meeting#/upcoming page I can only see some of them.  All of us are licensed, all other users are 'Members'.  

Any ideas on how to see all members?

Thanks for the help.

 

 


Show less

reply-icon Latest Reply - 

My microphone is crackling when in meetings

I am facing issues with my microphone crackling and the sound not being 100% clear for my participants. I am using the Sony XM5 headset and I have tried using my older XM4 headset and the issue persists with the crackling. The solutions I have tried ... Show more

I am facing issues with my microphone crackling and the sound not being 100% clear for my participants. I am using the Sony XM5 headset and I have tried using my older XM4 headset and the issue persists with the crackling. 

 

The solutions I have tried have been as follows:

  • Resetting my laptop and doing a clean install of Windows 11
  • Updating the audio and Bluetooth drivers on my machine (Windows 11 64bit)
  • Reinstalling the Zoom app on my desktop
  • Changing the microphone settings in the Zoom app
  • Using an alternative Bluetooth headset (both headsets work fine on WhatsApp and phone calls)
  • Checking for any electrical interference from near by devices  

My internet connection has no issues and is more than capable of providing the bandwidth to support Zoom.

 

All help would be appreciated. Thanks! 

 

 

 

 


Show less

reply-icon Latest Reply -