Volume Music application

Hi to everyone ! Very happy to have discovered this great app ! I am now able to use a Siri Remote to control our iMac. A simple question : how is it possible to control the volume of a specific application ? I am talking about controlling the volume from the native (Monterrey) Music application, and not the System volume. Many thanks for your help !

yes, it is possible ! Just use those scripts. Copy and paste the code onto BTT (Run Applescript):

  1. for volume UP :
    tell application "Music"
    set sound volume to sound volume + 5
    end tell

  2. for volume DOWN:
    tell application "Music"
    set sound volume to sound volume - 5
    end tell