This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-core/libnymea/interfaces/mediacontroller.json
2019-04-08 13:55:15 +02:00

48 lines
878 B
JSON

{
"extends": "media",
"states": [
{
"name": "mute",
"type": "bool",
"writable": true
},
{
"name": "volume",
"type": "int",
"minValue": 0,
"maxValue": 100,
"writable": true
},
{
"name": "playbackStatus",
"type": "QString",
"allowedValues": ["Playing", "Paused", "Stopped"],
"writable": true
}
],
"actions": [
{
"name": "skipBack"
},
{
"name": "rewind"
},
{
"name": "stop"
},
{
"name": "play"
},
{
"name": "pause"
},
{
"name": "fastForward"
},
{
"name": "skipNext"
}
]
}