What is using my sound card?

8

2

A couple weeks ago my speakers stopped working. When I reboot, they work perfectly. But eventually some mysterious, and I suspect nefarious, piece of software takes control. (On a related note, Youtube videos seem to stop working when the speakers die). The drivers are up to date, and I ran a Malware Bytes scan and nothing came up.

I first found this question and answer: https://superuser.com/a/496589/79629

In the properties of your audio device, there should be a checkbox option labelled "Allow applications to take exclusive control of this device". IIRC it is enabled by default; disabling it and rebooting should resolve your issue.

At first I thought that worked, but then the speakers stopped working again, even with that option disabled! These two screenshots were taken immediately after each other.

enter image description here

enter image description here

My next thought was to identify what was actually using the speakers. I found this second question and answer: https://superuser.com/a/253751/79629

The Volume Control application, accessible by right-clicking on the volume icon in the notification area next to your clock on the taskbar, or by running sndvol, should identify what applications are presently using your sound card.

However, it only shows me the system sounds.

enter image description here

Side note, Windows 8 has a hilarious tool called "Find and fix audio problems" which literally just checks if you're an idiot and have the volume muted.

andrewtweber

Posted 2014-07-18T03:38:59.397

Reputation: 131

Do you get the same issue if you perform a clean boot?

– and31415 – 2014-07-20T11:43:47.103

@and31415 it's hard to be certain because it always works after reboot and only stops after a time. If I'm using the speakers for music/TV, they work continually. They only stop after ~10 minutes of inactivity. After the clean boot, the speakers are still working after ~1 hr of inactivity, so yes I think this helped. – andrewtweber – 2014-07-21T03:27:19.747

Could be that you've an issue with your audio device being suspended after inactivity. If you still have the issue, check the power settings and disable audio suspend if you can. – piernov – 2014-07-22T11:37:18.697

@piernov could you clarify on where I would change that setting? I don't see any option for audio suspend – andrewtweber – 2014-07-22T17:18:36.777

@andrewtweber - Try this: Change the startup type of Windows Audio service to Disabled, and restart the PC, so suspicious program won't take control of audio device during startup, and after ~20 minutes restart the service. let's see if this helps. – Ĭsααc tիε βöss – 2014-07-24T17:34:49.920

Possible duplicate of Cannot play sound: device being used by another application

– janot – 2016-01-22T21:11:44.087

@janot I even link to that question in my question and explain that the answers there don't work – andrewtweber – 2016-01-23T04:03:15.207

@andrewtweber I understand, but your question is still a duplicate. I think you should've set bounty on that question instead of asking it again – janot – 2016-01-23T16:34:20.460

@janot mine also has way more detail though. How could I have provided that along with the screenshots? Editing the original question would have diverged too much from the original intent of the question – andrewtweber – 2016-01-23T20:36:14.593

@andrewtweber Your screenshots could be safely omitted and I don't think adding more details (e.g. you may specifically note that details were added later by you) would result in diverging from original intent. Intent would still be the same. No offence, I completely understand your reasons, I just like flagging questions (reasonably). – janot – 2016-01-24T02:20:36.160

Answers

4

I found that after I updated iTunes to the newest version, I was having the same issue. They installed some push application that was interfering with my sound card. Here is what I did:

Windows key + r Search msconfig Then under services I unchecked all of the Apple manufacturer services Under the startup tab I disabled any Apple products Restarted

My sound has been back up and running since then.

Stacy

Posted 2014-07-18T03:38:59.397

Reputation: 91

1

Found a solution:

  1. Search the start menu for "Device Manager" and open it
  2. Expand the "Sound, video and game controllers"
  3. Right-click the Audio device and disable it
  4. Right-click and then Enable the Audio device again

Should be working now.

Wagdi

Posted 2014-07-18T03:38:59.397

Reputation: 11

1

  1. for checking device suspension [although it doesnt seem like the problem], go do Device Manager and look for you Sound device, then open it [doubleclick] and look for "Power Management" tab - if it exists. you should also do this for USB hubs , since your sound card might be connected to one of those.

  2. you might have some malware messing about your system. Start with checking task manager, and msconfig.

  3. For some sound cards, you need to make sure to run their proprietary driver software for proper output. Maybe something should load at startup but fails or being terminated by the user [/you].

  4. a good workaround that might work for you, is restarting the Windows audio service. The shortest way of doing that is from an elevated command prompt run: sc stop audiosrv && sc start audiosrv

You should be up and running.

Adeerlike

Posted 2014-07-18T03:38:59.397

Reputation: 181

0

I found a simpler solution for the same problem (mine seemed to start occurring following a recent upgrade of my Chrome and Firefox browsers but this may have been coincidence).

Note that this solution has only been tested on a Windows 8.1 system so I am not sure if it will work on other versions of Windows.

  • Step 1: Open up the Search charm (WindowsKey + Q) and type in "View Local Services" then select the gear icon with that name.

Another way this can be opened is from the "Services" tab in Task Manager there is a link at the bottom of the dialog saying "Open Services".

  • Step 2: Scroll down the list towards the bottom and select "Windows Audio Endpoint Builder". In the upper left of the dialog you should see the following text:

Description: Manages audio devices for the Windows Audio service. If this service is stopped, audio devices and effects will not function properly. If this service is disabled, any services that explicitly depend on it will fail to start.

  • Step 3: Just above the Description are two links, "Stop the service" and "Restart the service". Click on Restart. You will get a warning about this affecting other services (in my case they were Windows Audio and DTS APO) which is perfectly normal. Click YES and you will see a series of messages about services being stopped and restarted.

Your sound should now work fine.

O.M.Y.

Posted 2014-07-18T03:38:59.397

Reputation: 235