volume control by API

JeanXeb

Member
Hello,

Is there a command to manage the volume by the API ?
For example :
http://127.0.0.1:9000/?pass=HdUXVgztOH&cmd=setvol0
http://127.0.0.1:9000/?pass=HdUXVgztOH&cmd=setvol100

Cordialy
 
Yes, this is possible, actruall with the commands you have posted :) But you need to put a space between "setvol" and the volume level to make it work. The space is encoded as %20 in the URL.

The proper command will look like (setvol 100):
http://127.0.0.1:9000/?pass=HdUXVgztOH&cmd=setvol%20100
 
Back
Top