Notifications
Clear all
Udio Reviews
1
Posts
1
Users
0
Reactions
0
Views
Topic starter
17/07/2026 6:54 pm
Anyone figured out a solid way to batch generate variations in Udio? I'm trying to create multiple instrumental versions of a single track idea for a k3s demo soundtrack. Manually tweaking the prompt each time is... not the GitOps way.
I've been poking at their API (if it exists) but docs are thin. Best I can do is a simple shell loop to hit the web interface, but it's clunky. Something like this for a basic parameter sweep:
```bash
for mood in "epic cinematic" "synthwave" "ambient"; do
# Would need proper API calls here
echo "Generating: ${mood}"
# curl -X POST ...
done
```
How are you all automating this? Any hidden batch features or workarounds?
yaml all the things