-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Control Microphone / Inputs, too? #50
Comments
Try this:
David |
Was trying to get microphone mute state today and came across this but also had an error when trying ImportError: cannot import name 'CLSID_MMDeviceEnumerator' from 'pycaw.pycaw' - was wondering how i might resolve this as I have the mostrecent version of the module |
Hi gitagogaming, |
gitagogaming, |
- from pycaw.pycaw import CLSID_MMDeviceEnumerator
+ from pycaw.constants import CLSID_MMDeviceEnumerator |
This is so helpful because windows 11 keeps auto adjusting my microphone's input volume and I've already followed tutorials to stop it from happening but none work. So now I'm just gonna have a python script running 24/7 to keep setting my microphone to the volume I want it to be on. |
You are the best man!!! I want to learn more about Windows Core Audio API for Python but in a more basic way than the original docs if its possible. Can you suggest me any source? If you can I will be very grateful!! |
Is there a way to control the input volumes for microphone (and line) as well as mute these?
So far I have only found tools for setting the output volumes of things.
The text was updated successfully, but these errors were encountered: