12-11-2018, 06:54 AM
(12-11-2018, 12:53 AM)Edward Wrote:(12-10-2018, 11:22 PM)alexlbz Wrote: whenever I start the moode audio player alsa volume is set to 0% !!!
volume controlled is by software
Pretty sure Tim is going to fix it, but until then and IF you ever run into this type of problem you can do this
Use this command to find sound card control - Look for 'Master Playback Volume'
$ amixer controls
numid=4,iface=MIXER,name='Master Playback Switch'
numid=3,iface=MIXER,name='Master Playback Volume'
numid=2,iface=MIXER,name='Capture Switch'
numid=1,iface=MIXER,name='Capture Volume'
Then use this to set default volume
$ amixer cset numid=3 100%
To make this 'stick' after each reboot create a script called [something.sh] and put the below in it with YOUR number, save then change permissions with sudo chmod 755 blahblah.sh. The just put the path to that file in your /etc/rc.local file.
#!/bin/bash
amixer cset numid=3 100%
sorry, i don't understand that. that's all new to me!