Eleven labs, your opinion and experience
Wróć do Show and Tell#161 Musicant
That is exactly what i get with my script. For me it is the same voice as in the first post of this thread.
#162 marchoffmann
#163 Jonathan
WTF?
#164 Jonathan
I used your script as basic, so thats really weird.
#165 Jonathan
so this is the one I get:
#166 marchoffmann
I just checked in my history from yesterdays test and it was called sarah then. I also found some generations from elly from months ago, if you tell me what's the way to get the voice ID...
-- (Musicant):
The script refers to the voice by name. So if there is another voice with the same name it could use that one instead. But i tried it before posting and it seemed to me that it was the voice you need. There is another way to refer to the particular voice by its ID. But i don't have any recordings with Elli in my history to try to retrieve the ID. Besides i don't see that possibility on the website though it seemed to me that i saw it there before.
--
#167 Musicant
I found a mistake! For some reason i posted the wrong script. Probably it was because i forgot to copy to the clipboard the right thing and pasted previous one instead!
There's the fixed code:
from elevenlabs import generate, play, save, set_api_key
# edit the values in the lines below according to your preferences. Keep the quotes at their places. api key is in your profile.
voice='Elli'
api_key='your_api_key'
text='This is a text to generate.'
save_path='d:/elevenlabs_test.mp3'
#end of preferences
# setting api key and generate audio
set_api_key(api_key)
speech = generate(text, voice=voice)
#Playing generated audio
play(speech)
#saving audio to the destination set in save_path variable
save (speech, save_path)
#168 marchoffmann
Thanks a lot! We'll check that out soon
#169 rudolf
hmm. I don't see anythng changed.
#170 Musicant
Read carefully. There is one tiny but crucial change.
#171 marchoffmann
Anyways, it works now. I appreciate your help
#172 kalahami
#173 kalahami
#174 techboy
bro that is cool man
#175 fluttershy1
#176 fluttershy1
#177 rudolf
edit
I'm stupid, ignore this post.
#178 rudolf
So, that is how I see it.