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

Ridiculous issues with new M2 Mac mini?

Hello! I just bought a new M2 Mac mini base model and one of its primary uses is as a videoconferencing machine to be used 3-5 hours a day. I have been having a ridiculous amount of issues and I am looking for ideas. I am using it with a Logitech Bri... Show more

Hello!

 

I just bought a new M2 Mac mini base model and one of its primary uses is as a videoconferencing machine to be used 3-5 hours a day. I have been having a ridiculous amount of issues and I am looking for ideas. I am using it with a Logitech Brio webcam on a tripod with no usb extension cable and the mini is hooked up to a 65" 4k tv over HDMI 2.0. This is what I am experiencing:

 

1. Audio will work for a while but eventually when I am unmuted all everyone else hears is a loop of echo noises. When I am muted and I open up audio preferences I can see the mic levels jumping wildly. I can use the iPhone a a mic and that seems more stable although sometimes it loses the connection. I tried using AirPod Pros as the mic and zoom immediately crashed.

 

2. Video is usually ok but will my video will freeze at some point in the conference. Audio still works and I can see video / screen sharing of the other participants.

 

3. Sometimes I see a spinning beachball and the zoom app becomes unresponsive. If I am lucky I can get through most of the rest of the zoom conference seeing and hearing participants and seeing screen shares. Eventually the entire app locks up.

 

In an effort to troubleshoot, I have completely wiped the Mac mini and reinstalled the latest os: 13.2 (22D49). I have a minimal software installation including 1password and the webcam settings app. no other non apple software is installed on this system. I have the default camera and mic set to the brio webcam and the default speaker set too "same as system" which is the tv.

 

Has anyone else been running into issues like this? Zoom works fine on my other devices (M1 Studio, iPad Pro, iPhone) and everything else I've tried on this Mac mini (before wiping to a minimal installation) works great. I can only assume that these problems are between the current version of the zoom app and the hardware or os of the new m2 Mac mini. I am running zoom 5.13.6 (14918).

 

Thank you in advance!


Show less

reply-icon Latest Reply - 

Zoom chat copy and paste

When I copy and paste text from a Microsoft Word document into the Zoom chat function, the text is either bold and/or underlined, when it was not like that initially. The formatting of the text also changes. I have never had this problem, till I did ... Show more

When I copy and paste text from a Microsoft Word document into the Zoom chat function, the text is either bold and/or underlined, when it was not like that initially. The formatting of the text also changes. I have never had this problem, till I did a recent upgrade. I have no idea how to stop Zoom doing this repeatedly. Can someone please help? Thank you, Mo.


Show less

reply-icon Latest Reply - 

Zoom for Guitar lessons not working

I have tried sound for musicians ON and Off and the new Beta live performance, but my instructior cannot hear my guitar AT ALL.  It's being filtered out no matter what setting I try.  I can hear him fine.

 

Suggestions

reply-icon Latest Reply - 

Resolved! Large meeting and permanent link

Hello,

If I increase my account to a large meeting of 500 people, does this change the link of my permanent zoom ?


THANKS,

 

Thomas

reply-icon Latest Reply - 

レコーディングファイルの破損

4時間の会議をローカルで録画してデータを確認すると24時間のファイルになりました

途中でスローモーションのような状態になり視聴できる内容ではありませんでした

データが破損しているのはブレイクアウトルームの部分のみでした

What does newly generated recordings only mean? Regarding Transcripts of meetings.

What does newly generated recordings only mean? Regarding Transcripts of meetings.

Is there a time limit to retrieve them? If, so what is it?

Resolved! Problem with a enter a meetings

When I try to join a meeting, it tells me that there was an unexpected error and I cannot enter.

 

I have the latest version of the application, and I don't have any antivirus that blocks it.

 

reply-icon Latest Reply - 

Client not loading on Android

I am using an android 11 and zoom was working perfectly fine until today morning. Today morning i had to sign in again and since then when I close the app and opens it again, it shows "Unstable Network, tap to retry" and tapping doesn't do any good. ... Show more

I am using an android 11 and zoom was working perfectly fine until today morning. Today morning i had to sign in again and since then when I close the app and opens it again, it shows "Unstable Network, tap to retry" and tapping doesn't do any good. I uninstalled-installed the app and signed in again and it worked just fine but when I closed the app and opened it, it showed the same error again. But if I uninstall and install again it works fine again until I close and reopen the app. 

I checked for updates but I am using the latest version. 


Show less

reply-icon Latest Reply - 

Sharing spotify - Audio can not be heard

Hello, please can you helpI have just bought a new Asus Vivobook S15, running Windows 11 and using RealtecIn a meeting when i share music via spotify the participants can not hear the music.I have the following..All my Zoom settings are correct.Updat... Show more

Hello, please can you help

I have just bought a new Asus Vivobook S15, running Windows 11 and using Realtec

In a meeting when i share music via spotify the participants can not hear the music.

I have  the following..

All my Zoom settings are correct.

Updated the Audio drivers

I've switched the AI sound cancellation off in my Asus settings (a solution i found in the Asus boards)

I've tried using the zoom browser rather than the App

Confusingly it worked once last week...

Look very forward to any suggestions, this is vital for my work 

Thank you 


Show less

Finding dificulties in react-native-zoom-us

When i try to integrate the key and secret ID then it returns a jwt token but when I try to verify the token using SDK it shows an error that is not easily understandable by us it is showing ERR [Error: Error= 5 (unknown), internalErrorCode=124] erro... Show more

When i try to integrate the key and secret ID then it returns a jwt token but when I try to verify the token using SDK it shows an error that is not easily understandable by us it is showing ERR [Error: Error= 5 (unknown), internalErrorCode=124] error code it's because of the initialization 

const KJUR = require("jsrsasign");

function generateSignature(key, secret, meetingNumber, role) {
  const iat = Math.round(new Date().getTime() / 1000) - 30;
  const exp = iat + 60 * 60 * 2;
  const oHeader = { alg: "HS256", typ: "JWT" };

  const oPayload = {
    sdkKey: "....GQ",
    appKey: "....OO",
    mn: 00.....,
    role: role,
    iat: iat,
    exp: exp,
    tokenExp: exp,
  };

  const sHeader = JSON.stringify(oHeader);
  const sPayload = JSON.stringify(oPayload);
  const sdkJWT = KJUR.jws.JWS.sign("HS256", sHeader, sPayload, secret);
  return sdkJWT;
}

console.log(
  generateSignature(
    "......vw",
    ".......E",
    ....0000,
    0
  )
);
This code is for generating a token and it is giving response but the sdk is giving error kindly resolve this issue.

Show less