-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.json
More file actions
61 lines (61 loc) · 2.06 KB
/
Copy pathplugin.json
File metadata and controls
61 lines (61 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"id": "stems",
"name": "Stems Toggle",
"version": "0.9.0",
"private": false,
"standards": ["capability-pipelines.v1", "plugin-runtime-idempotent.v1"],
"settings": {
"html": "settings.html",
"category": "audio"
},
"script": "screen.js",
"scriptType": "module",
"minHost": "0.3.0-alpha.1",
"category": "audio",
"description": "Separate and control individual song stems.",
"icon": "assets/thumb.svg",
"settings_schema": {
"schema_version": "1",
"packable_keys": ["acceptExternalMuteRequests", "manualUnmuteWins", "diagnosticsLevel"]
},
"ui": {
"settings": [{ "id": "stems-settings", "region": "plugin-settings", "label": "Stems Toggle" }]
},
"capabilities": {
"stems": {
"roles": ["owner", "provider"],
"kind": "command",
"commands": ["mute", "restore", "setVolume", "list", "inspect", "mute-guitar", "unmute-guitar"],
"emits": ["stems.ready", "stems.manual-unmute"],
"observes": ["claim:released"],
"description": "Owns stem mix automation commands and exposes sloppak stem state for requester plugins.",
"mode": "active",
"compatibility": "legacy-window-shim",
"ownership": "exclusive-owner",
"safety": "safe",
"version": 1
},
"playback": {
"roles": ["observer"],
"kind": "lifecycle",
"observes": ["loading", "ready", "stopped", "ended"],
"description": "Observes playback lifecycle events to rebuild or tear down the stem graph without wrapping window.playSong.",
"mode": "active",
"compatibility": "shim-allowed",
"ownership": "observer-only",
"safety": "safe",
"version": 1
},
"audio-mix": {
"roles": ["provider"],
"operations": ["fader.get-value", "fader.set-value"],
"events": ["fader-value-changed", "fader-unavailable"],
"description": "Registers per-stem faders with the core audio-mix coordinator while Stems owns the media graph.",
"mode": "active",
"compatibility": "none",
"ownership": "multi-provider",
"safety": "safe",
"version": 1
}
}
}