I'm using a USB sound card on my pi
wanted to know how can I chagne the output volume of it ?
I haver try to use this command
Code: Select all
amixer set PCM -- 85%in order to play file I use this command in python
Code: Select all
TestSound = "/home/pi/Documents/test.mp3"
os.system("mpg123 -o alsa:hw:1,0 " + TestSound)
Thanks ,