-
Notifications
You must be signed in to change notification settings - Fork 541
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A voice for the voice_id was not found #3
Comments
Ok, found it - docs say to set |
I am actually getting this error even when setting |
Found the solution: you should go to elevenlabs.io/voice-library and add the voice of "Brian" to your VoiceLab. Then change line |
If you add Brian's voice but see this error: ValueError: Voice 'Brian' not found. It's because of #4: make sure you're setting |
Nope, still doesn't work for me. I also have a paid sub. That voice ID is just missing |
Brian doesn't sound like David Attenborough, though, but in the video he really does. Does anyone know the actual voice? |
I got Brian to work, but how do we get Attenburough? |
I solved it, you need to buy a subscription with Elevenlabs $5/month, and create a new voice in voice lab using the "Instant voice clone" option. Upload a mp3 file of Attenbouroughs voice from this link: https://www.mediafire.com/file/rkzphfpyzisjrrq/david.mp3/file, name it something like "David", and reference "David" from your narrator.py file like so: def play_audio(text):
audio = generate(
text=text,
voice="David",
model="eleven_turbo_v2"
) |
I used "David - Gentle, Engaging, Soothing" from the existing Voice Library, and it worked pretty well! |
Ah exactly what I was looking for Very cool, I got it working and wow what a gem of how this technology can/will be used |
Hi! I've almost got this working, but I'm getting this error message "This request's text has 590 characters and exceeds the character limit of 2500 characters for non signed in accounts." I'm currently subscribed to the Starter Account and have tried resetting my API key multiple times. I'm sooooo close. Any ideas? |
I had the same issue @Althea-Texas, i am also on the Starter plan. Try to logout/login and regenerate your API key, then update your env variable |
I was able to fix by importing set_api_key from eleven and calling it with |
Is the "Instant Voice Cloning" option grayed out for anyone else? Just upgraded to the starter plan. Might be the firestore issue mentioned in the banner when logging in? |
Thank you, everyone. This worked! :) |
Hi @Althea-Texas , Do you know if this is how it looks? |
I had the same issue. Seems like an issue with Elevenlabs, I solved it by signing up with a fresh email and subscribing to the starter plan. |
You can set the API key with this command (replace with an actual API key, this is just a random string).
You can also check that the API was actually set with this command:
|
thanks for this! |
Hi - Without edits am getting the below error - Any idea as to why? 🎙️ David says: |
From your error, it looks like you haven't replaced the voice name with Brian:
If you did replace it and still get that error, you probably haven't navigated to elevenlabs.io/voice-library and added the voice of Brian (or whatever other voice you wish to use) to your VoiceLab. |
Found why I always got 'voice_id was not found'. |
Thanks - got it working -
Does anyone know what is the David Attenborough voice?
…
Found why I always got 'voice_id was not found'.
In the readme is written export ELEVENLABS_API_KEY=
but this should be export ELEVEN_API_KEY=.
—
Reply to this email directly, view it on GitHub <#3 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AAIVKDHL5IQXOIGTVQGNPBDYE64TZAVCNFSM6AAAAAA7M4NAY2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMJWHE4DINRZGY>.
You are receiving this because you commented.
|
You have to create your own version using Instant Voice Cloning then get
the ID.
Can't use the one that's loaded i don't think.
…On Fri, 17 Nov 2023 at 21:20, Radu Rosu ***@***.***> wrote:
Thanks - got it working -
Does anyone know what is the David Attenborough voice?
>
> Found why I always got 'voice_id was not found'.
> In the readme is written export ELEVENLABS_API_KEY=
> but this should be export ELEVEN_API_KEY=.
>
> —
> Reply to this email directly, view it on GitHub <
#3 (comment)>, or
unsubscribe <
https://github.com/notifications/unsubscribe-auth/AAIVKDHL5IQXOIGTVQGNPBDYE64TZAVCNFSM6AAAAAA7M4NAY2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMJWHE4DINRZGY>.
> You are receiving this because you commented.
>
—
Reply to this email directly, view it on GitHub
<#3 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AE6TUT6KDNHDCOMNWKHH4IDYE7BI7AVCNFSM6AAAAAA7M4NAY2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMJXGA2DSMZRGQ>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Hi! Thanks for hacking this one, it's super cool :)
Narrator doesn't work for me, the elevenpath API always returns
where XXX is the voiceId of my freshly created voice.
any ideas? I can't find the error in their docs
The text was updated successfully, but these errors were encountered: