All models
Audiov1.0.0
Stable Audio 2.5 (SFX & Music)
Generate a sound effect or a music bed from a prompt.
4 inputsAUDIO
a heavy wooden door creaking open in a stone hall
Output
Fill in the inputs and run the node to see its output here.
Run it from your code
The same node, called by id from any surface. Every tab pins stable-audio and passes the ports below. Full guide.
import { BlitClient } from "@blitflow/sdk";
const { runNode } = new BlitClient({ apiKey: process.env.BLITFLOW_TOKEN });
const { outputs } = await runNode("stable-audio", {
prompt: { value: "example" },
duration: { value: 10 },
steps: { value: 8 },
seed: { value: 1 },
});# Install once, then sign in
npm install -g blitflow
blitflow login
blitflow node stable-audio \
-i prompt="example" \
-i duration=10 \
-i steps=8 \
-i seed=1{
"name": "runs_node",
"arguments": {
"node": "stable-audio",
"inputs": {
"prompt": {
"value": "example"
},
"duration": {
"value": 10
},
"steps": {
"value": 8
},
"seed": {
"value": 1
}
}
}
}curl https://studio.blitflow.com/api/v1/runs/node \
-H "Authorization: Bearer $BLITFLOW_TOKEN" \
-H "Content-Type: application/json" \
-d '{"node":"stable-audio","inputs":{"prompt":{"value":"example"},"duration":{"value":10},"steps":{"value":8},"seed":{"value":1}}}'Schema
Inputs
| prompt* | TEXT | ||
| duration | INT | Duration (seconds) | 10 |
| steps | INT | 8 | |
| seed | INT |
Outputs
| audio | AUDIO |