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

zoom does not work with next js 15

I am experiencing an issue with the Zoom Web SDK in my Next.js application. Upon initializing the Zoom meeting, the application displays a black screen.any help or starter kit for next js 15 ?----------------------------------------------------------... Show more

I am experiencing an issue with the Zoom Web SDK in my Next.js application. Upon initializing the Zoom meeting, the application displays a black screen.any help or starter kit for next js 15 ?
--------------------------------------------------------------
this is my console 
[Fast Refresh] rebuilding
zoomus-websdk.umd.min.js:2 success load webim
zoomus-websdk.umd.min.js:2 success load jsmedia
zoomus-websdk.umd.min.js:2 pre load wasm success: https://source.zoom.us/3.10.0/lib/av/audio.simd.wasm
zoomus-websdk.umd.min.js:2 pre load wasm success: https://source.zoom.us/3.10.0/lib/av/video.mtsimd.wasm
4
-------------------------------

"dependencies": {
"@zoom/meetingsdk": "^3.10.0",
"next": "15.1.3",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
-------------------------
"use client";
import "./App.css";
import React, { useEffect, useState } from "react";
import Script from "next/script";
import "@zoom/meetingsdk/dist/css/bootstrap.css";
import "@zoom/meetingsdk/dist/css/react-select.css";

function Welcome() {
  const [ZoomMtg, setZoomMtg] = useState<any>(null);

  const authEndpoint = ""; // Replace with your endpoint
  const sdkKey = ""; // Replace with your Zoom SDK Key
  const meetingNumber = ""; // Replace with your meeting number
  const passWord = ""; // Replace with your meeting password
  const role = 0; // 0 = Attendee, 1 = Host
  const userName = "React";
  const leaveUrl = "http://localhost:3000"; // Redirect after leaving the meeting

  useEffect(() => {
    import("@zoom/meetingsdk")
      .then(({ ZoomMtg }) => {
        ZoomMtg.preLoadWasm();
        ZoomMtg.prepareWebSDK();
        setZoomMtg(ZoomMtg);
      })
      .catch((error) => console.error("Zoom SDK Error:", error));
  }, []);

  const getSignature = async () => {
    if (!ZoomMtg) return;
    try {
      const response = await fetch(authEndpoint, {
        method: "POST",
        headers: { "Content-Type": "application/json" },
        body: JSON.stringify({ meetingNumber, role }),
      });
      const data = await response.json();
      startMeeting(data.signature);
    } catch (error) {
      console.error("Error fetching signature:", error);
    }
  };

  const startMeeting = (signature: string) => {
    if (!ZoomMtg) return;

    document.getElementById("zmmtg-root")!.style.display = "block";

    ZoomMtg.init({
      leaveUrl,
      success: () => {
        ZoomMtg.join({
          signature,
          sdkKey,
          meetingNumber,
          passWord,
          userName,
          success: (success: unknown) => console.log("Joined:", success),
          error: (error: unknown) => console.error("Join Error:", error),
        });
      },
      error: (error: unknown) => console.error("Init Error:", error),
    });
  };

  return (
    <>
      <Script
        src="https://cdn.jsdelivr.net/npm/lodash@4.17.21/lodash.min.js"
        strategy="beforeInteractive"
      />
      <div>
        <div id="zmmtg-root"></div>
        <div id="aria-notify-area"></div>
        <main>
          <h1>Zoom Meeting</h1>
          <button onClick={getSignature}>Join Meeting</button>
        </main>
      </div>
    </>
  );
}

export default Welcome;

 


Show less

Seeing videos and chat function on a tablet at the same time

I am going to use zoom on my samsung tablet but I was hoping to be able to see the chat screen and the video participants at the same time. I can't figure out how to do it. Please help!

audio &amp; video are not in sync on both laptop and phone for my zoom account.

There is a weird split second delay where my audio and video are not in sync. This is for both my laptop and my phone, so it's not an issue with a device. It's a zoom issue. Has anyone else experienced this issue? If so, how did you resolve it? Show more

There is a weird split second delay where my audio and video are not in sync.  This is for both my laptop and my phone, so it's not an issue with a device.  It's a zoom issue.  Has anyone else experienced this issue?  If so, how did you resolve it?


Show less

reply-icon Latest Reply - 

Resolved! Can't actually exit Zoom

Why does zoom not close out when i hit exit. It just sits in the background after i have used the the one common resource used to close applications. So why does zoom think its special. Why am i forced to right click on the taskbar. It's not that tha... Show more

Why does zoom not close out when i hit exit. It just sits in the background after i have used the the one common resource used to close applications. So why does zoom think its special. Why am i forced to right click on the taskbar. It's not that that is difficult, but this is my computer. Who does zoom think it is that it can just continue to go on. And the fact that there isn't a setting to change this just shows how terrible of a company zoom is. Then on top of that i can't even talk to an actual human to try to fix the problem. 


Show less

reply-icon Latest Reply - 

Resolved! share screen linux wayland broken

Hi, I just installed Zoom client 6.1 on openSuSE and screen sharing is not showing any option anymore on Basic, but only under Advance tab, and there in this one I can only select Screen Portion, but also cannot confirm the screen sharing. Please fix... Show more

Hi, I just installed Zoom client 6.1 on openSuSE and screen sharing is not showing any option anymore on Basic, but only under Advance tab, and there in this one I can only select Screen Portion, but also cannot confirm the screen sharing. Please fix it or let me know how to downgrade to previous version. Thanks in advance!


Show less

reply-icon Latest Reply - 

Resolved! LogiTune software not working with Zoom Workplace

I have a Logitech c920s webcam running on a Windows 11 laptop. I was using Logitech Capture software to take advantage of picture adjustments, but it's obsolete and has been replaced by LogiTune. Here's the problem: I can start LogiTune and see the v... Show more

I have a Logitech c920s webcam running on a Windows 11 laptop. I was using Logitech Capture software to take advantage of picture adjustments, but it's obsolete and has been replaced by LogiTune.

    Here's the problem: I can start LogiTune and see the video feed from the camera, but LogiTune shuts down or crashes when I start Zoom. If I start Zoom first and then run LogiTune, the LogiTune software says that the camera is in use with another application (i.e., Zoom).

    Is there some way to get LogiTune to work with Zoom? If no one has a solution, I'll have to go back to Logitech Capture.


Show less

reply-icon Latest Reply - 

Compartir power point como fondo

No se me habilita la opción de Power Point como fondo, es como si estuviese bloqueado y junto a la opción sale un ícono pequeño diferente al de información y es similar al de alerta, todas las opciones se me habilitan y puedo usar de ese apartado de ... Show more
No se me habilita la opción de Power Point como fondo, es como si estuviese bloqueado y junto a la opción sale un ícono pequeño diferente al de información y es similar al de alerta, todas las opciones se me habilitan y puedo usar de ese apartado de avanzado y únicamente esa opción que la necesito no se me habilita.

Show less

Zoom Meeting History

Is it possible to find details such as who attended a previously held web zoom meeting when meeting id is known.

 

reply-icon Latest Reply - 

Auto-Focus camera

I’m experiencing an issue with the video feed on Zoom where the camera appears to automatically focus on me, leaving the background slightly out of focus, even though I don’t have the background blur enabled. My FaceTime HD camera works fine in other... Show more

I’m experiencing an issue with the video feed on Zoom where the camera appears to automatically focus on me, leaving the background slightly out of focus, even though I don’t have the background blur enabled. My FaceTime HD camera works fine in other apps like Photo Booth, so I don’t believe it’s a hardware issue.

I have already tried the following troubleshooting steps:

Verified that "Touch Up My Appearance," "Adjust for Low Light," and "Portrait Lighting" are disabled.
Toggled "HD" and "Original Ratio" in video settings.
Checked the "Advanced" video settings for any relevant features.
Updated my Zoom app to the latest version.
Ensured no third-party apps are interfering with the camera.
Despite these efforts, the issue persists. It seems Zoom may be automatically prioritizing focus on my face or applying some kind of framing or processing feature that I cannot disable.

Could you please advise if there’s a way to stop this auto-focus behaviour or if this might be a software issue?


Show less

Joining a meeting with hacker issues

I joined a meeting and all of a sudden I saw inappropriate videos, inaudible audio, and images dropped in the meeting chat under my name - all while the meeting was going on. is this a zoom hacker or is it coming from my computer? This has never happ... Show more

I joined a meeting and all of a sudden I saw inappropriate videos, inaudible audio,  and images dropped in the meeting chat under my name - all while the meeting was going on. is this a zoom hacker or is it coming from my computer? This has never happened before. 


Show less