Discussions
Webm format transparent background
about 1 year ago by Anant
I am using the below script, still I am getting in background the sky blue color, is that means transparent background here or I am missing something. Please let me know?
import requests
url = "https://api.d-id.com/clips"
payload = {
"script": {
"type": "text",
"subtitles": "false",
"provider": {
"type": "microsoft",
"voice_id": "en-US-JennyNeural"
},
"ssml": "false",
"input": "hello"
},
"config": { "result_format": "webm" },
"background": { "color": False },
"presenter_id": "amy-Aq6OmGZnMt"
}
headers = {
"accept": "application/json",
"content-type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)