Python Forum
How to change the sound volume with python ?
Thread Rating:
  • 2 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to change the sound volume with python ?
#4
(Sep-30-2016, 07:33 PM)Lightningwalrus Wrote: How do I change this code so I can change the sound volume on my computer ? I use windows 7.
Now I'm not sure if I can pull it off at all. This seem very complicated :O
The library nilamo posted  should solve it.
Test controlling volume on my laptop Win-10.
from ctypes import cast, POINTER
from comtypes import CLSCTX_ALL
from pycaw.pycaw import AudioUtilities, IAudioEndpointVolume

devices = AudioUtilities.GetSpeakers()
interface = devices.Activate(
   IAudioEndpointVolume._iid_, CLSCTX_ALL, None)
volume = cast(interface, POINTER(IAudioEndpointVolume))

# Control volume
#volume.SetMasterVolumeLevel(-0.0, None) #max
#volume.SetMasterVolumeLevel(-5.0, None) #72%
volume.SetMasterVolumeLevel(-10.0, None) #51%
Reply


Messages In This Thread
RE: How to change the sound volume with python ? - by snippsat - Sep-30-2016, 08:08 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
Question Calculate the volume of piles of materials using aerial drone images WtonS 0 685 Oct-29-2024, 09:21 PM
Last Post: WtonS
  mute spotify by the mixer of volume garze23 0 982 Feb-27-2024, 05:42 PM
Last Post: garze23
  Image to Sound Python Project ankitdixit 1 4,505 Jul-26-2021, 08:20 PM
Last Post: snippsat
  Real Time Audio Processing with Python Sound-Device not working Slartybartfast 2 6,906 Mar-14-2021, 07:20 PM
Last Post: Slartybartfast
  Play fixed frequency sound in python 3 jpezz 2 4,161 Feb-07-2021, 08:21 PM
Last Post: jpezz
  Python 3.7, Windows 10, pyinstaller, winsound, no sound in executable kmarien 3 5,305 Nov-30-2020, 04:10 PM
Last Post: buran
  Create a 3D volume with some properties. Rosendo 0 2,009 Jul-18-2020, 08:20 PM
Last Post: Rosendo
  Windows Volume Control using python Arun 1 5,725 May-17-2019, 02:50 PM
Last Post: Larz60+
  Working with large volume of data (RAM is not enough) evonevo 6 5,675 Oct-21-2018, 09:24 PM
Last Post: Larz60+
  Change Windows Sound Output Device with Python delfar 1 12,264 Sep-15-2017, 12:11 AM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020