How i increase the volume on my speakers connected 3.5 jack

hello i have this automation:

- alias: 'Porta casa de banho'
  trigger:
    platform: time
    seconds: '/60'
  condition:
    - condition: state
      entity_id: binary_sensor.porta_casa_de_banho
      state: 'on'
    - condition: time
      after: '07:50'
      before: '00:30'
    - condition: state
      entity_id: input_boolean.portawc
      state: 'on'
  action:
   - service: media_player.play_media
     data:
       entity_id: media_player.vlc
       media_content_id: /home/homeassistant/.homeassistant/wc.mp3
       media_content_type: 'music'

but the volume is very low, but if a tried used OXMPLAYER the sound VOLUME is good.
what can i do?

Try setting the volume with alsamixer. ssh into your pi and type:

alsamixer

at the prompt. Use the arrow keys to navigate and turn the volume sliders up and down. Once you are satisfied with the volume levels, press Esc, to save the settings at the prompt type:

sudo alsactl store

1 Like

thank for it cariboo. its working.