Discussions
Need to create an animation with a listening expression
I am building an assistant. When the user is talking, I need to play a video of the assistant listening with a head nod. Is there a specific driver that I can use for this? When I provide a custom driver video, I get a response that "user has no permissions for custom driver". I am on the Lite plan.
Video generation
why am I not able to generate a video with the free trial option?
Streaming API performance
We’ve got streaming set up, and everything’s working great except it takes 3-5 secs for the avatar to start speaking after sending the text.
When will the API be stable?
We've been developing around the D-ID API for some time now and are about to push our latest launch using D-ID.
Error code 403
Hello there, I'm always getting error 403 when using clips via my IOS App however I have credit on the API account and it's configured properly
الصوت
لماذا لا يندمج الصوت مع الصورة مع تحريك الشفايف
cambiar de plan
gaopoe p ocomued cambiar d eplan y cambiar de metodo
API Google Oauth
- Is there a way to authenticate to the talks api using google oauth if so, whats the code snippet for it (python)
- If there isnt, does the free version authenticate the api ?
Because this isnt letting me in with the my free username and password.
import requests
url = "https://api.d-id.com/talks"
payload = {
"source_url": "https://d-id-public-bucket.s3.us-west-2.amazonaws.com/alice.jpg",
"script": {
"type": "text",
"subtitles": "false",
"provider": {
"type": "microsoft",
"voice_id": "Sara"
},
"input": "Making videos is easy with D-ID"
},
"config": {
"fluent": "false",
"pad_audio": "0.0"
}
}
headers = {
"accept": "application/json",
"content-type": "application/json",
"authorization": "Basic bXN0MTk3NEBzYmNnbG9iYWwubmV0OlNhbHpidXJnMTYwIQ=="
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)
Streaming API
Hi,
Problem sending SDP answer
Hello, I'm trying to implement the Talks Streams use case. Everything goes well until sending back the SDP answer to the /sdp endpoint. This is the POST call i'm making (authorizaton changed to xxxxxx):