Discussions

Ask a Question

Socket connection timeout sync API call using nodejs axios

``` const options = { method: 'POST', url: 'https://api.genny.lovo.ai/api/v1/tts/sync', headers: { accept: 'application/json', 'content-type': 'application/json', 'X-API-KEY': 'my API key here' }, data: { speed: 1, text: 'welcome to edana text to voice conversion', speaker: '63b40772241a82001d51b8ec', speakerStyle: '63b40772241a82001d51b8ed' }, timeout: 60000 // Set timeout to 10 seconds }; const response = await axios.request(options); ```

How to Improve Clip Generation Latency

I'm trying to send and receive sentences in real time with ChatGPT and output them as voice. The problem is that the time it takes to make a sentence into a sound clip is different every time and takes a long time. Is there a way to shorten the time when making sentences into sound clips?

write a news paper article on importance of psychology

write a news paper article on importance of psychology

Error when exporting the filw

6b317455-ad1c-4969-bdef-c4001a5493be tts block does not have a s3ObjectKey I am getting the above error.

Error when exporting the filw

6b317455-ad1c-4969-bdef-c4001a5493be tts block does not have a s3ObjectKey I am getting the above error.

API Error... in Python script.

Generating audio intro... Error downloading audio... {'statusCode': 402, 'timestamp': '2024-04-20T17:30:57.770Z', 'path': '/api/v1/tts/sync', 'error': 'TTS requests via API for Free Users are blocked for security reasons. Please contact us at [[email protected]](mailto:[email protected]) if you wish to try out the API for free', 'errorCode': 7758} Generating audio product 1... Error downloading audio... {'statusCode': 402, 'timestamp': '2024-04-20T17:30:58.994Z', 'path': '/api/v1/tts/sync', 'error': 'TTS requests via API for Free Users are blocked for security reasons. Please contact us at [[email protected]](mailto:[email protected]) if you wish to try out the API for free', 'errorCode': 7758} Error downloading audio... <br>

Where can I find some sample files that contain all of the different functions and parameters

Where can I find some sample files that contain all of the different functions and parameters <br> <br>

is the REST api call quota more with paid membership?

Hi, noticed there is a monthly quota for api calls. Wondering if there is more quota for paid members?

Inflection

how can I mark inflection in text. I want to write tome code to add inflection to emphasize some of the words. Is this possible?

TTS Batch Request

Hello, Question for you all. Does the API support batch requests? I've tried the following as the content of my request and I get an error. I noticed that a successful response from the API contains an array of URLs (Even though there is only one element). Request Content [{"speed":1,"text":"This is string 1","speaker":"640f477d2babeb0024be422b"},{"speed":1,"text":"And this is string 2","speaker":"640f477d2babeb0024be422b"}] API Response {"statusCode":400,"timestamp":"2023-11-17T00:14:51.572Z","path":"/api/v1/tts/sync","error":"text must be longer than or equal to 1 characters, Input text must not be greater than 500 characters per block. Please separate it out into different blocks., text must be a string, text should not be empty, speaker must be a mongodb id, speaker: undefined is not Found; please use other speaker instead, speed must not be greater than 3, speed must not be less than 0.05, speed must be a number conforming to the specified constraints","errorCode":"InvalidInputException"} Thanks!