EltenLink

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


matthew E curtis
2024-03-10 14:19

#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.

--


McOi. Not my own captain, but a passenger on this ship.
2024-03-10 15:55

#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.



2024-03-10 16:15

#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.


McOi. Not my own captain, but a passenger on this ship.
2024-03-10 16:27

#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

--


Trussville roll: Deep-fried, smoked salmon, crab salad, cream cheese, topped with mango sauce, sweet soy-reduction, green onion. MMMMM
2024-03-10 16:29

#126 ferre

@post 120, it blocks because elections are coming up and it blocks the presidents voices, I found a video of it, listen


Vox tech, trust us.
2024-03-10 22:13

#127 ferre



Vox tech, trust us.
2024-03-10 22:14

#128 Musicant

@marchoffmann, i just tried to access Elli via api. It still works, at least for now.



2024-03-11 04:57

#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.


McOi. Not my own captain, but a passenger on this ship.
2024-03-11 15:33

#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!



2024-03-11 17:22

#131 Jonathan

isn't api paid?



2024-03-11 17:49

#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.



2024-03-11 18:37

#133 blindTechProductions

I found the text in the following audio post from a website called woketearswater.com



2024-03-11 20:04

#134 blindTechProductions




2024-03-11 20:05

#135 techboy



Trussville roll: Deep-fried, smoked salmon, crab salad, cream cheese, topped with mango sauce, sweet soy-reduction, green onion. MMMMM
2024-03-11 21:20

#136 marchoffmann

Lol what? Can't even understand what you said in that 1 half word of post


McOi. Not my own captain, but a passenger on this ship.
2024-03-12 07:21

#137 techboy

i was trying to say lmao but i accidently clicked voice so just went with it


Trussville roll: Deep-fried, smoked salmon, crab salad, cream cheese, topped with mango sauce, sweet soy-reduction, green onion. MMMMM
2024-03-12 13:04

#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!

--



2024-03-13 11:31

#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.



2024-03-13 12:08

#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.

--



2024-03-13 12:16