Are there remote control links to increase/decrease master and one-shot volume?

I use Elgato streamdeck during sessions and I found out that certain one-shots are very loud compared to other one-shouts and some moods. I need to be able to adjust the sound level of mood/oneshots from the deck. I don’t see remote link to control the slider for the local or web players.

Is there a way to do that?

I don’t know if this helps you, but we have released an API endpoint that controls the global volumes (and responds to GET requests). The format for the links looks like this:

https://syrinscape.com/online/frontend-api/global-volume/[±]AMOUNT/?auth_token=INSERT_TOKEN_HERE

You can use the [±] to make relative adjustments or leave these out to specify a volume specifically. e.g. you may want to try these:

Reduce global volume by 5%
https://syrinscape.com/online/frontend-api/global-volume/-0.05/?auth_token=INSERT_TOKEN_HERE
Increase global volume by 5%
https://syrinscape.com/online/frontend-api/global-volume/+0.05/?auth_token=INSERT_TOKEN_HERE
Set global volume to 100%
https://syrinscape.com/online/frontend-api/global-volume/1.00/?auth_token=INSERT_TOKEN_HERE

There are analogous links for /global-oneshot-volume/, so you could try:

Set global oneshot volume to 80%
https://syrinscape.com/online/frontend-api/global-oneshot-volume/0.80/?auth_token=INSERT_TOKEN_HERE

Let me know if you have any questions!

This definitely helps! I like the set to 100% and the increment. Quite useful and no need to open the browser anymore during session.

Great! Glad to hear this is useful for you :slight_smile: Feel free to experiment outside of the provided examples, you may find something else in the future, and of course - Enjoy!