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

Getting multiple meeting IDs when scheduling Zoom meetings through Google Calendar

I'm hoping someone may be able to help us with this issue... We mainly use Google Calendars to schedule our meetings and use the GSuite Add-on to make the meeting a Zoom meeting. However, a few users have started to report that the meeting ID in the ... Show more

I'm hoping someone may be able to help us with this issue...

 

We mainly use Google Calendars to schedule our meetings and use the GSuite Add-on to make the meeting a Zoom meeting.  However, a few users have started to report that the meeting ID in the body doesn't necessarily match the meeting ID in the header (see attached image).  Even passwords are different.  Has anyone else seen this?


Show less

reply-icon Latest Reply - 

Please answer my question?

What kind of support zoom will provide for LGBTQIIA?

reply-icon Latest Reply - 

ZOOM Web SDK API not emitting audio and video on some browsers when hosted on different servers

I am having challenges with my Zoom web SDK API integration whereby the platform doesn't emit audio and video on some browsers but then it will work properly on those same browsers when hosted on a different server. Are there any specific server sett... Show more

I am having challenges with my Zoom web SDK API integration whereby the platform doesn't emit audio and video on some browsers but then it will work properly on those same browsers when hosted on a different server. Are there any specific server settings or features that may inhibit sound and video from functioning properly on an integrated platform? Or maybe the issue could be due to the reverse proxy used. The challenges were incurred whilst using the Nginx reverse proxy.


Show less

reply-icon Latest Reply - 

Zoom Integration help needed

Hello Everyone, Zoom was deleted from mu 365 yesterday due to making it run slowly. I am trying to reinstall, but zoom has an issue whem going to room management and then to calendar integration, all that comes up is rooms and they want you to pay fo... Show more

Hello Everyone,

 

Zoom was deleted from mu 365 yesterday due to making it run slowly.  I am trying to reinstall, but zoom has an issue whem going to room management and then to calendar integration, all that comes up is rooms and they want you to pay for it.  Nothing about calendar integration.  I have a free accont at this time and cannot get support for them.  Anyone know how I can make this happen as I am on zoom all day.

 

Thanks!

 

I can be reached at ***********


Show less

Create multiple meetings that could be held in parallel without the person who created....

Hello,I want to create multiple meetings that could be held in parallel without the person who created the meeting participatingThe meeting creator will simply create the meetings for other people but not join them.It is very important to specify tha... Show more

Hello,

I want to create multiple meetings that could be held in parallel without the person who created the meeting participating
The meeting creator will simply create the meetings for other people but not join them.
It is very important to specify that several meetings would be open simultaneously, this is often the problematic point

It is possible ?

Thanks you


Show less

Loss of the ability to have 60 minute meetings 1:1

Hi,I just use Zoom to tutor a child. It is 1:1 for an hour a few times a week. Now that they cut it to 40 minutes, I can't use zoom unless I pay 14.95 a month. Are there any other cheaper pricing plans they offer? Or another free platform I don't hav... Show more

Hi,

I just use Zoom to tutor a child. It is 1:1 for an hour a few times a week.  Now that they cut it to 40 minutes, I can't use zoom unless I pay 14.95 a month.  Are there any other cheaper pricing plans they offer?  Or another free platform I don't have to pay for?

 


Show less

reply-icon Latest Reply - 

Joining meeting timeout issue on Zoom API

I’m using Academy LMS script with Academy LMS Live Class (zoom) Addon. This addon asked me to enter api key and security key, I did. Then I start a meeting via the zoom app and save the id and password to the system as a teacher. When i try to connec... Show more

I’m using Academy LMS script with Academy LMS Live Class (zoom) Addon. This addon asked me to enter api key and security key, I did. Then I start a meeting via the zoom app and save the id and password to the system as a teacher. When i try to connect a meeting as a student i get this error: “Joining meeting timeout. Your connection has timed out and you cannot join the meeting. Verify your network connectivity and try again.”

Please help me on this issue, thanks.

Thats my code:

<!DOCTYPE html>
<head>
    <title>Zoom</title>
    <meta charset="utf-8" />
    <link type="text/css" rel="stylesheet" href="https://source.zoom.us/1.7.7/css/bootstrap.css"/>
    <link type="text/css" rel="stylesheet" href="https://source.zoom.us/1.7.7/css/react-select.css"/>
    <meta name="format-detection" content="telephone=no">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
</head>
<body>

<script src="https://source.zoom.us/1.7.7/lib/vendor/react.min.js"></script>
<script src="https://source.zoom.us/1.7.7/lib/vendor/react-dom.min.js"></script>
<script src="https://source.zoom.us/1.7.7/lib/vendor/redux.min.js"></script>
<script src="https://source.zoom.us/1.7.7/lib/vendor/redux-thunk.min.js"></script>
<script src="https://source.zoom.us/1.7.7/lib/vendor/jquery.min.js"></script>
<script src="https://source.zoom.us/1.7.7/lib/vendor/lodash.min.js"></script>
<script src="https://source.zoom.us/zoom-meeting-1.7.7.min.js"></script>

<script>    $( document ).ready(function() {
        start_zoom();
    });

   function start_zoom() {

    ZoomMtg.preLoadWasm();
    ZoomMtg.prepareJssdk();


    testTool = window.testTool;

        var meetConfig = {
            apiKey: 'Existing Values',
            apiSecret: 'Existing Values',
            meetingNumber: 'Existing Values',
            userName: 'Existing Values',
            passWord: 'Existing Values',
        };


        var signature = ZoomMtg.generateSignature({
            meetingNumber: meetConfig.meetingNumber,
            apiKey: meetConfig.apiKey,
            apiSecret: meetConfig.apiSecret,
            role: 0,
            success: function(res){
                console.log(res.result);
            }
        });

        ZoomMtg.init({
            leaveUrl: "file:///C:/Users/User/Desktop/zoom.html",
            isSupportAV: true,
            success: function () {
                ZoomMtg.join(
                    {
                        meetingNumber: meetConfig.meetingNumber,
                        userName: meetConfig.userName,
                        signature: signature,
                        apiKey: meetConfig.apiKey,
                        passWord: meetConfig.passWord,
                        success: function(res){
                            console.log('join meeting success');
                        },
                        error: function(res) {
                            console.log(res);
                        }
                    }
                );
            },
            error: function(res) {
                console.log(res);
            }
        });
   }</script>
</body>
</html>

My Error : “Joining meeting timeout. Your connection has timed out and you cannot join the meeting. Verify your network connectivity and try again”

Error Image:

https://i.stack.imgur.com/ZcANlcheck-here.png


Show less

Does Samsung S9 support for Virtual Background?

I'm planning to buy used old samsung phone for my secondary phone and came across reasonable price of used Samsung S9. Does anyone know if Samsung S9 support for Virtual Background?

Unable to share zoom recordings to attendees out of my work environment

Hi team, 

 

I have recorded a session with attendees that are not within my company. However when i share the viewing access. They are still unable to see.

 

Where can i change the settings or how do i solve this issue?

 

Thank you!

How to see someone's face in my minimized Zoom window, while that person is screensharing?

Hello everyone: I am having trouble with this issue, and I was wondering if someone could help, please. When I am in a Zoom meeting, usually a participant starts sharing their screen (for example, they do that because they are recording the meeting, ... Show more

Hello everyone:

 

I am having trouble with this issue, and I was wondering if someone could help, please.

 

When I am in a Zoom meeting, usually a participant starts sharing their screen (for example, they do that because they are recording the meeting, and wish to be able to video record what is happening in their screen).

In that situation, I do not need to see their screen but their face (their video). I know I can see their face if Zoom is NOT minimized. However, I'd need to minimize Zoom (because so much space in my screen is taken otherwise). But whenever I minimize Zoom, the minimized Zoom window ONLY shows me that person's screen. 

 

So my question is: when someone else shares their screen, is there a way for me to see that person's face (or video, NOT their screen) in my minimized Zoom window?

 

Thank you so much, in advance, for your help!


Show less

reply-icon Latest Reply -