Eleven labs, your opinion and experience
Wróć do Show and Tell#121 mattcurtis3
oh yeah. looks like the US presidents sooed eleven labs, because when I try to make a clone out of trump or byden, it blocks it? don't know why
#122 marchoffmann
Sigh... Ok no. How much of, python, do I need to understand for this. And since you're not even sure if the voice would come back with that, meh.
-- (Musicant):
It is not something what can be covered in two words. They have an extensive documentation on it but you need to know programming at least a bit. They also have a ready to use python wrapper for their api which a bit easier than the original websocket api but you still need to understand python.
--
#123 rudolf
well, you said you really want this voice back. I, if I would want get back something really, would try it out, but it seems that you only want it half. But well.
#124 marchoffmann
No, I'm not willing to learn a programming language for something to maybe, maybe. Come back, probably it doesn't even work.
#125 techboy
well. You can if you have surtain recordings. google
-- (mattcurtis3):
oh yeah. looks like the US presidents sooed eleven labs, because when I try to make a clone out of trump or byden, it blocks it? don't know why
--
#126 ferre
@post 120, it blocks because elections are coming up and it blocks the presidents voices, I found a video of it, listen
#127 ferre
#128 Musicant
@marchoffmann, i just tried to access Elli via api. It still works, at least for now.
#129 marchoffmann
Could you tell me what to do in pm? I'd highly appreciate it. I asume all you need is python installed? I can get that.
#130 Musicant
Here's the easiest script. It cannot use voices by voice ids, choose linguistic models or alter voice parameters. It just generates some text with chosen voice, plays it back and then saves to a file. Read it carefully and edit where it is applicable.
To run the script:
1. Install Python.
2. Launch python to create some necessary files.
Now type "exit()" command without quotes but keeping parentheses and press enter. The python interpreter will be closed.
3. Run windows terminal and run the following command for installing eleven labs python api:
pip install elevenlabs
4. Edit the following code according to your preferences. For more info read the lines beginning with hash sign.
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)
#Playing generated audio
play(speech)
#saving audio to the destination set in save_path variable
save (speech, save_path)
5. Run this script in python terminal or save it as a file with the .py extension and launch from the explorer.
For more advanced stuff learn python yourself!
#131 Jonathan
isn't api paid?
#132 Musicant
All tiers and conditions are the same as with the web interface. You need to optain api key from your profile as i stated in the comments inside the code.
It also has the public api key which is used by default but it generates very small amount of characters per day and then stop working till the next day.
#133 blindTechProductions
I found the text in the following audio post from a website called woketearswater.com
#134 blindTechProductions
#135 techboy
#136 marchoffmann
Lol what? Can't even understand what you said in that 1 half word of post
#137 techboy
i was trying to say lmao but i accidently clicked voice so just went with it
#138 rudolf
there's probably also a way to modify the script by yourself or chatGPT and make it with wxPython, so it opens a window in which you can enter the text, choose the model and the path and so on. but well.
-- (Musicant):
Here's the easiest script. It cannot use voices by voice ids, choose linguistic models or alter voice parameters. It just generates some text with chosen voice, plays it back and then saves to a file. Read it carefully and edit where it is applicable.
To run the script:
1. Install Python.
2. Launch python to create some necessary files.
Now type "exit()" command without quotes but keeping parentheses and press enter. The python interpreter will be closed.
3. Run windows terminal and run the following command for installing eleven labs python api:
pip install elevenlabs
4. Edit the following code according to your preferences. For more info read the lines beginning with hash sign.
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)
#Playing generated audio
play(speech)
#saving audio to the destination set in save_path variable
save (speech, save_path)
5. Run this script in python terminal or save it as a file with the .py extension and launch from the explorer.
For more advanced stuff learn python yourself!
--
#139 Jonathan
wx python is kinda trashy, at least if you try to use it with chat gpt. also this script is really not difficult to understand.
#140 rudolf
I didn'T said that it is hard to understand. also, it depens which chatGPt you use, and how yu use it.
-- (Jonathan):
wx python is kinda trashy, at least if you try to use it with chat gpt. also this script is really not difficult to understand.
--