Get System Volume (sound Level) In Linux Using Python
I am using Fedora 16 and modifying a program in python 2.7. How do I get the systems volume (Sound level)?
Solution 1:
For ALSA, use pyalsaaudio
For Pulse, its a bit raw. There are ctype bindings
Solution 2:
If you are using ALSA, you can run 'amixer' to dump the state of all volume controls. For PulseAudio, I believe 'pacmd dump' should get similar info. (see http://blog.waan.name/pulseaudio-setting-volume-from-command-line/ )
Post a Comment for "Get System Volume (sound Level) In Linux Using Python"