Discussions
Video download by result_url (API)
Hello!
Posted by jakab.d almost 2 years ago
Adding Caption for Videos
Hey! Can I generate captions while generating videos? Does API support any of this option?
Posted by Sharryy over 1 year ago
Getting errors creating new D-ID Agent
Just got approved to beta test D-ID Agents. I tried creating an agent twice and received an error message that the agent cannot be created.
Posted by apineda2005 over 1 year ago
All the provided API's are free or paid
i want to use these api in my project . Can i used these free
Posted by beenasharma.hawkscode over 1 year ago
downloading result url mp4
- followed tutorial video, using postman app on my pc, made request for simple video
- used request with id (tlk...) which returned info with result url at end.
- when I control+click mp4, tab in chrome says "missing authentication token". Actually, I want to download the video, so how to do this? I am a programmer, but haven't used postman before.
Posted by off.world.liaison almost 2 years ago
429 Too Many Requests (from /ice -- ICE Candidates)
Hello,
Posted by die201404020 over 1 year ago
NO clips for Lite users?
I am receaving this message "description": "user has no permission for clips:write" when tryng to create a clip, is it because my plan?? if so it should be specified somewhere... its anoying
Posted by albertotates about 2 years ago
add break with duration
how to add a 0.5s break using api
Posted by lovenana1470 about 2 years ago
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);
}
}
Posted by support over 1 year ago