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

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

Problem after last update - version 5.16.2 (22807)

I have been using a Surface Pro 3 for several years with no issues. This evening I started having issues with audio after the mentioned update. I use a set of Beats Wireless Studio 3 headphones. The are used as a wired headphone. After this update, t... Show more

I have been using a Surface Pro 3 for several years with no issues.  This evening I started having issues with audio after the mentioned update.  I use a set of Beats Wireless Studio 3 headphones.  The are used as a wired headphone.  After this update, the headphones do not have any audio.  If you check out the operating system (Win 10 Pro x64), everything is perfect.

IF you have the Zoom application shut down, headphones work properly.  If you open the Zoom application, you only get audio from the speakers of the Surface Pro 3.  No matter if you have the headphones plugged in or not.  I have checked the usual things, including battery charge levels.

There is obviously something that has changed with the latest update.  I use this unit, at least twice a week for remote meetings.  The use of the headphones, is required, due to my spouse's hearing issues.  I will almost guarantee that other users are having these issues.

Thank You for your assistance,

Wallace

 


Show less

reply-icon Latest Reply - 

Unable to join zoom meeting through web sdk

I've integrated the web sdk version 2.18.2 through cdn link. The meeting is started but when I press the join button, "joining meeting" appears on screen but the meeting is not joined. The following message appears in browser console:previewVal zm_pr... Show more

I've integrated the web sdk version 2.18.2 through cdn link. The meeting is started but when I press the join button, "joining meeting" appears on screen but the meeting is not joined. The following message appears in browser console:

previewVal zm_previewVal 7
zoom-meeting-2.18.2.min.js:2 join invalid parameter !!!

Please advise


Show less

Can I upload a zoom recording?

Zoom switches the order of the recording buttons depending on whether I am sharing my screen or not. Sometimes, like yesterday, I hit the button to record locally rather than "Record to the Cloud". But sharing recordings is easier if they are stored ... Show more

Zoom switches the order of the recording buttons depending on whether I am sharing my screen or not.  Sometimes, like yesterday, I hit the button to record locally rather than "Record to the Cloud".  But sharing recordings is easier if they are stored by Zoom.  Can I upload my local recording to have it stored and shared by the Zoom app?


Show less

Making reoccuring no date meetings alphabetical

I've been looking through the discussions regarding alphabetical vs chronological listings and I am not seeing any answers. I'd like some help in changing my recurring meetings that do not have a specific date and time to alphabetical , everything is... Show more

I've been looking through the discussions regarding alphabetical vs chronological listings and I am not seeing any answers.  I'd like some help in changing my recurring meetings that do not have a specific date and time to alphabetical , everything is in some random order currently. Thank you.


Show less

Resolved! Can alternative hosts pull meeting reports?

Hello! My manager and I both create meetings and add each other as alternative hosts. We both need access to the registration reports and usage reports. How can we both access these reports? For meetings that I create, am I the only one who can pull ... Show more

Hello! My manager and I both create meetings and add each other as alternative hosts. We both need access to the registration reports and usage reports. How can we both access these reports?

 

For meetings that I create, am I the only one who can pull the registration and/or usage? Is it possible for me to pull reports from meetings my manager creates if I'm an alternative host?

 

Thank you in advance for your assistance!


Show less

reply-icon Latest Reply - 

Meetings are downloading twice

When I first signed up for Zoom, all I had to do was set my download path and a new meeting folder would be created and all my files (.mp4, .txt, etc.) would be put in that folder. For example, if my download path was "C:\Download" and my recurring m... Show more

When I first signed up for Zoom, all I had to do was set my download path and a new meeting folder would be created and all my files (.mp4, .txt, etc.)  would be put in that folder. For example, if my download path was "C:\Download" and my recurring meeting was called "Unstated Meeting", a new folder would be created in "C:\Download" called "{Date and Time stamp} Unstated Meeting" and my files would be saved there. It worked perfectly.

Recently, like in the last several months, I get prompted to choose a download path after each meeting. The new folder is STILL being created, but all the files are ALSO added to "C:\Download". I have checked, the files are exactly the same. What do I need to do to go back to just working like it was before?


Show less

Ukraine

Hi! I`m from Ukraine, but I still have 40minutes limit. Can I get unlimited version?

Participants in the waiting room are not displayed

Hello!I have had the following problem for a few days now:I have activated a waiting room, but I do not get a message when a participant enters the waiting room.Does anyone know the problem? Device: Notebook / Windows Zoom Version: 5.17.1 (28914) Tha... Show more

Hello!
I have had the following problem for a few days now:
I have activated a waiting room, but I do not get a message when a participant enters the waiting room.
Does anyone know the problem?

 

Device: Notebook / Windows 
Zoom Version: 5.17.1 (28914)

 

Thank you very much,
Sandra


Show less

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?