Discussions
audio endpoint, can you upload form data?
export const uploadAudio = async (audio) => {
const formData = new FormData();
formData.append('audio', audio, 'audio.mp3');
try {
const response = await fetch(voicesURL, {
method: 'POST',
headers: {
'accept': 'application/json',
'authorization': 'Basic ' + didApiKey,
'content-type': 'multipart/form-data'
},
body: formData
});
const data = await response.json();
console.log("\x1b[46m\x1b[30m%s\x1b[0m", "This is the data from the DID API: ", data)
// Do something with the data, for instance send it as a response or process it
return data;
} catch (error) {
// Handle errors, for instance send an error response or log the error
console.error('Error fetching data:', error);
}
}
valiadation error
Hello.I'm trying to generate 20sec video in chinese using Opera browser but it shows "validation error". What's that and how can I get rid of it?
Korean Language support in api.
Can I use Korean language for generating moving facial video? I found some result did not work well. Which one should I for voice selection?
Watermarks
Can I remove the watermarks from my videos?
Important question
hi , is the pic i download go to a page for the website or reused again by someone else?
Creation of video
What is the best AI to creat a video ?
Get a list of the presenters wrong documenation
Hey,
Stream usege cost?
I'm designing my app to allow users to select a character, speak to it using ChatGPT (voice-to-text), and receive responses from a chat D-ID character (text-to-video).
Will I be able to use my API key for this?
How will this impact the cost when I market my app and users begin to engage with it?
I am trying to access streams but i am facing some error
In D-ID AI stream I am trying to access the live stream avatar but I am facing ERROR