sc_record_start
Start recording audio output to a specified file in the recordings directory for capturing generated sounds and synthesis results.
Instructions
Start recording audio output to a file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | Output filename (will be saved in recordings/ directory) |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"description": "Output filename (will be saved in recordings/ directory)",
"type": "string"
}
},
"required": [
"filename"
],
"type": "object"
}