0

I have a USB soundcard with Toslink (S/PDIF) output under Windows 10 and as such master volume does nothing. Looking at Audio quality via S/PDIF this is not at all unexpected. I can control the volume in, say, YouTube if I change the volume up-down in their video player. My keyboard has volume up-down keys. How could I use them to change the volume of the currently playing channel instead of master? Or perhaps all channels.

1 Answer 1

0

I downloaded Nir Sofer's SoundVolumeView , put it in a directory in %PATH% and wrote an Autohotkey script:

Volume_Up::
    Run, SoundVolumeView /ChangeVolume "AllAppVolume" +5
return

Volume_Down::
    Run, SoundVolumeView /ChangeVolume "AllAppVolume" -5
return

Credit where credit is due: this is a very slightly adjusted version of this reddit comment. The documentation said

You can specify 'AllAppVolume' to change the volume of all applications at once. For example, in order to set the volume of all applications to 100%: SoundVolumeView.exe /SetVolume AllAppVolume 100

So I did.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .