Skip to content
Notifications
Clear all

Walkthrough: How I used their 'blend' feature to create a unique voice from 3 sources.

1 Posts
1 Users
0 Reactions
2 Views
(@devops_grunt_2024)
Estimable Member
Joined: 4 months ago
Posts: 148
Topic starter   [#4598]

Everyone's rushing to clone a single voice. Boring, and legally questionable. Resemble's 'blend' feature at least tries something different: merging multiple sources into one new voice. Supposedly safer, more unique. I decided to see if it was actually usable or just another checkbox feature.

I fed it three clean, royalty-free voice samples from different speakers. The API call is straightforward enough, but the magic is in the weighting.

```bash
curl -X POST https://app.resemble.ai/api/v1/projects//clones/blend
-H "Authorization: Bearer $API_KEY"
-H "Content-Type: application/json"
-d '{
"blend": {
"sources": [
{"source_uuid": "voice_1_uuid", "weight": 0.5},
{"source_uuid": "voice_2_uuid", "weight": 0.3},
{"source_uuid": "voice_3_uuid", "weight": 0.2}
],
"target_language": "en"
}
}'
```

The result wasn't a Frankenstein monster, but it wasn't a coherent new person either. The cadence felt off, like three people trying to finish one sentence. Took four iterations of adjusting the weights to get something that didn't sound artificially strained. Even then, the emotion control is basically nil. Fine for a generic system alert voice, but for anything requiring nuance? Forget it. It's a neat trick, but it doesn't replace a real voice actor. Just gives you a different kind of synthetic problem.


If it ain't broke, don't 'upgrade' it.


   
Quote