Maintenance is being performed on Zoom's support site on November 4 that may cause support impact. For more information, please click here.
Everything you need to work together, all in one place.
Explore Zoom One's Collaboration ToolsConnect virtually from anywhere with Zoom Meetings
Collaborate together with Zoom Chat
Call the world with Zoom Phone
Create and brainstorm with Zoom Whiteboard
Rich conversation analytics to improve sales
Send and receive messages and calendar invitations
Bring fluid interactions to hybrid teams with Zoom Huddles
Remove the hassle of traditional scheduling with Zoom Scheduler
Innovative video solutions for every meeting space.
Bring meeting spaces online with Zoom Rooms
Conference Room Connector links existing rooms to Zoom
Innovative solutions for every space
Solutions to host impactful virtual and hybrid experiences.
Find a Solution for Every EventHost hybrid and virtual events with Zoom Events
Elevate your brand with single session events powered by Zoom Sessions
Broadcast at scale with Zoom Webinars
Host and attend classes, group events, and more OnZoom
An omnichannel cloud solution optimized for video.
Engage customers with Zoom Contact Center
Deliver intelligent support with conversational AI
Optimize contact center agent performance and engagement
Zoom solutions elevate collaboration across vertical use cases.
Discover Zoom Industry SolutionsEnabling exciting new ways to teach, learn, and connect globally
Transforming client engagement and employee experiences
Improving collaboration between agencies, ministries and constituents
Connecting care, collaboration, and medical innovation
Real-time communication, anywhere in the world
Bridging the in-store and online experiences
Expert support and services for all your design, strategy, implementation, event, and hardware needs.
Global Services
Hardware purchase and subscription options
Flexible subscription plans for hardware
Protect certain data at rest with your own encryption keys
An open platform that allows developers to build Zoom apps and integrations.
Explore thousands of apps that work with or within Zoom
Documentation for building with Zoom's technology using SDKs, APIs, and webhooks
Post your questions and get help from our developer community
Zoom Partners bring Zoom's communications platform to market through alliance, sales, and service partnerships.
Explore Zoom's technology ecosystem
Find a trusted Partner
Learn about Zoom's Partner Programs
Access marketing & sales resources
Login to the Partner Portal and click 'Learn'
Discover new ways to use Zoom solutions to power your modern workforce.
Access expert-led tutorials on Zoom products and features.
Network with other Zoom users, and share your own product and industry insights.
Get documentation on deploying, managing, and using the Zoom platform.
Keep your Zoom client up to date to access the latest features.
Download CenterDownload hi-res images and animations to elevate your next Zoom meeting.
Browse Backgrounds
2023-05-18
08:53 AM
- last edited on
2023-06-26
11:09 AM
by
RN
Hi. How can I share audio on Zoom from one application only? I am hosting an All Hands. The PowerPoint presentation has embedded intro/outro audio tracks. During the presentation, other audio-generating applications will be running on my computer, like Slack. I don't want my Slack notification, Outlook notification, etc. sounds to be heard by the attendees.
Related: Is it finally possible to toggle audio share without stopping/restarting the share? That would be a sort-of acceptable solution, as the notification sounds would only come through during that brief period of time.
Solved! Go to Solution.
2023-05-18 10:57 AM
Thanks Frank. Yeah, I think you might be right. In my case, Windows 11 can manage the volume of any individual audio-generating item using the Volume mixer tool. (Right-click the speaker icon in the notification area > Volume Mixer.) I was hoping Zoom had a more elegant way of managing this problem - you've already recognized it's (a) too advanced for most users and (b) enough of a pain you've set up an alternate account!
Turns out there is a (more complex but) better answer for Windows. The astonishingly good Nir Sofer has implemented command-line volume management of specific applications in NirCmd! I use NirCmd for other stuff, decided to look this up after your post, and voila! https://blog.nirsoft.net/2011/02/25/how-to-control-the-volume-level-of-specific-application-from-com...
To reduce Chrome's volume to 20%, I can either drag the slider or:
nircmd.exe setappvolume chrome.exe 0.2
The only challenge is knowing the executable names of the sounds I want to mute (chrome.exe above) but that's just a matter of looking at Task Manager. Once I (painfully) find each noisemaker's exe name, they'll all go into my "shut up" and "speak up" batch files that I can toggle sound off and on with.
2023-05-18 01:47 PM
And now it looks like my second response has also been eaten by the spam filter. Wow. Maybe third time lucky?
Manual:
Use Windows' Volume Mixer to figure out what's making noise. Turn them down. Remember to turn them up when done.
Automated:
1. Use Task Manager to figure out the names of the exe files listed in Volume Mixer
2. Use NirSoft's NirCmd to write one command line per application you want to mute
3. Slap them all into a batch file and run
Google search nircmd how to control volume level of specific application for the details.
Hope this helps, and I'll pray the spam gods let me through at least once.
2023-05-18 09:10 AM
Hello,
I dont think this is up to Zoom.
Your operating system should have a way to manage notifications. On my Mac I manage notifications through System Settings > Notifications.
Since I don't want to mange these each time I present I have created another user account I use for screen recording or Zoom presentations. This way I can keep these notifications managed at all times and I don't have to manage them every time I present.
Regards
If my reply helped, don't forget to click the accept as solution button!
2023-05-18 10:57 AM
Thanks Frank. Yeah, I think you might be right. In my case, Windows 11 can manage the volume of any individual audio-generating item using the Volume mixer tool. (Right-click the speaker icon in the notification area > Volume Mixer.) I was hoping Zoom had a more elegant way of managing this problem - you've already recognized it's (a) too advanced for most users and (b) enough of a pain you've set up an alternate account!
Turns out there is a (more complex but) better answer for Windows. The astonishingly good Nir Sofer has implemented command-line volume management of specific applications in NirCmd! I use NirCmd for other stuff, decided to look this up after your post, and voila! https://blog.nirsoft.net/2011/02/25/how-to-control-the-volume-level-of-specific-application-from-com...
To reduce Chrome's volume to 20%, I can either drag the slider or:
nircmd.exe setappvolume chrome.exe 0.2
The only challenge is knowing the executable names of the sounds I want to mute (chrome.exe above) but that's just a matter of looking at Task Manager. Once I (painfully) find each noisemaker's exe name, they'll all go into my "shut up" and "speak up" batch files that I can toggle sound off and on with.
2023-05-18 01:03 PM - edited 2023-05-18 01:07 PM
For some reason, my answer to my question was marked as spam and vanished.
In short: Windows 11 --> Settings > System > Sound > Volume Mixer maps to the notifications on Mac. You can turn them all down or up manually, leaving the one you want to make noise turned up.
To (painfully) automate
Example: To set Chrome to 20% of maximum volume, run this on the command line or in the batch file
nircmd-dot-exe setappvolume chrome.exe 0.2
I now have two batch files, one to "shut up" and one to "speak up". 🙂
Hope that helps!
2023-05-18 01:47 PM
And now it looks like my second response has also been eaten by the spam filter. Wow. Maybe third time lucky?
Manual:
Use Windows' Volume Mixer to figure out what's making noise. Turn them down. Remember to turn them up when done.
Automated:
1. Use Task Manager to figure out the names of the exe files listed in Volume Mixer
2. Use NirSoft's NirCmd to write one command line per application you want to mute
3. Slap them all into a batch file and run
Google search nircmd how to control volume level of specific application for the details.
Hope this helps, and I'll pray the spam gods let me through at least once.
2023-05-24 10:17 AM
This thread looks like I was hallucinating now that my dangerously spammy responses have been restored. 😀