multi-synth-execute
Execute multiple SynthDefs simultaneously in SuperCollider-MCP, allowing parallel synthesis with customizable duration and control over each synth's parameters.
Instructions
複数のSynthDefを同時に実行します。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
duration | No | 再生時間(ミリ秒)。デフォルトは10000(10秒) | |
synths | Yes | 再生するシンセのリスト |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"duration": {
"description": "再生時間(ミリ秒)。デフォルトは10000(10秒)",
"type": "number"
},
"synths": {
"description": "再生するシンセのリスト",
"items": {
"additionalProperties": false,
"properties": {
"code": {
"description": "シンセのコード",
"type": "string"
},
"name": {
"description": "シンセの名前",
"type": "string"
}
},
"required": [
"name",
"code"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"synths"
],
"type": "object"
}