Discussions

Ask a Question
ANSWERED

Please enable 3rd party TTS Providers.

Is this possible for D-ID or is it too much to ask?

ANSWERED

What is the correct format of the image URL while sending a POST request to an endpoint e.g. talks?

Hi,

ANSWERED

Fatha Url required as the chatbot ai avatar

Dear Tech Support,

ANSWERED

Ou puis-je trouver l-ID de mon agent ?

Ou puis-je trouver l-ID de mon agent ?

ANSWERED

How do we track agent and streaming usage?

On the bottom left of the web UI I can see the credits remaining. How do I track how our credits are being consumed? For example. which agents/sessions used credits on which date/time?

ANSWERED

The token expires after 24 hours

Hi,

ANSWERED

i am facing a permission issues

when I hit
var uri = Uri.parse('
https://api.d-id.com/talks');
var header = {
HttpHeaders.authorizationHeader: 'Basic aW5mb0BodGVjaC1zb2x1dGlvbi5jb20:WlSiiZ1CAsLehMn-6s9gA}',
HttpHeaders.acceptHeader: 'application/json',
'Content-Type': 'application/json',
};

ANSWERED

AI generated anime-style characters triggering copyright block?

Hello. I've been using D-iD to animate some anime characters I generated on Leonardo. I have consistent trouble with one of them (a generic-looking young man) triggering the copyright block. Since most anime characters have extremely similar faces, I'm having a lot of trouble getting around this problem. Is there anything I can do to help D-iD recognize that these images are NOT famous characters (short of drastic changes like hair color, etc.)? Unfortunately, upgrading my account and requesting a review isn't financially possible at the moment.

ANSWERED

Résiliation de mon compte.

Je vous demande de bien vouloir résilier mon compte, car je ne gère plus trop les prélèvements et je souhaite mettre fin à mon abonnement. Merci de bien vouloir si cela est nécessaire, m'indiquer la méthode la plus sûre pour mettre fin à mes prélèvements. Dans l'attente d'une réponse favorable à ma demande, veuillez croire en mon plus profond respect.

ANSWERED

how can i integrate amazon polly to streaming talks, can you give me a sample call?

I need a sample call, so far I hace this const url = 'https://api.d-id.com/talks/streams/id';
const options = {
method: 'POST',
headers: {
accept: 'application/json',
'x-api-key-external': JSON.stringify({ "amazon": "YOUR_AMAZON_POLLY_API_KEY" }), // Amazon Polly key
'content-type': 'application/json',
authorization: 'Basic YOUR_DID_API_KEY'
},
body: JSON.stringify({
script: {
type: 'text',
provider: {
type: 'amazon', // Changed provider to Amazon Polly
voice_id: 'Joanna' // Example Amazon Polly voice
},
ssml: false
},
config: {
fluent: false,
pad_audio: 0.0
},
audio_optimization: '2',
session_id: 'YOUR_SESSION_ID'
})
};