Discussions

Ask a Question
ANSWERED

How to change Streaming video background color and full size idle animation

Hi,

ANSWERED

Aspect Ratio

I am getting video of 9:16 aspect ratio from stream, can i get video with 16:9 aspect ratio.

ANSWERED

How can I cancel my account?

How can I cancel my account?

ANSWERED

CORS issue

hey i am getting issue while using the streams , more on when creating the stream .

ANSWERED

If I use the API, does it cost 1 point for every 15-second video generated using the API? I hope to use api to generate my grandfather

If I use the API, does it cost 1 point for every 15-second video generated using the API? I hope to use api to generate my grandfather because he passed away. Is it possible to use aip to let him talk to me in real time?

ANSWERED

How can I view my created video?

{
"script": {
"length": 23,
"ssml": false,
"subtitles": false,
"type": "text",
"provider": {
"type": "microsoft",
"voice_id": "en-US-JennyNeural",
"voice_config": {
"rate": "0.5",
"style": "string",
"pitch": "+2st"
}
}
},
"audio_url": "
https://d-id-clips-persistent-prod.s3.us-west-2.amazonaws.com/auth0%7C65b6937e2ea99aebb0df77c1/clp_PLctFbCTbQHXCAjZbsq2u/microsoft.wav?AWSAccessKeyId=AKIA5CUMPJBIJ7CPKJNP&Expires=1706584614&Signature=eU2ZGdm96pO9YQcPI6VxgI12ZIQ%3D&X-Amzn-Trace-Id=Root%3D1-65b718a6-445e07b81566ea843abd6cdc%3BParent%3D24cc7bf216515ec2%3BSampled%3D0%3BLineage%3Da1383e26%3A0",
"created_at": "2024-01-29T03:16:54.941Z",
"persist": true,
"user_data": "string",
"config": {
"logo": {
"url": "https://d-id-user-logos-prod.s3.us-west-2.amazonaws.com/default/worker/did-watermark-2023.png",
"position": [
0,
0
]
},
"result_format": ".mp4",
"fluent": false,
"motion_factor_kp": [
1,
0.75
]
},
"source_url": "https://clips-presenters.d-id.com/rian/pbMoTzs7an/vmcS2q23Kk/thumbnail.png",
"created_by": "auth0|65b6937e2ea99aebb0df77c1",
"status": "started",
"driver_id": "vmcS2q23Kk",
"name": "string",
"modified_at": "2024-01-29T03:16:55.122Z",
"background": {
"color": "#800080"
},
"presenter_id": "rian-pbMoTzs7an",
"subtitles": false,
"id": "clp_PLctFbCTbQHXCAjZbsq2u",
"duration": 5,
"presenter_config": {
"crop": {
"type": "rectangle",
"rectangle": {
"right": 0,
"top": 0,
"left": 0,
"bottom": 0
}
}
},
"started_at": "2024-01-29T03:16:55.014",
"pending_url": "s3://d-id-clips-persistent-prod/auth0|65b6937e2ea99aebb0df77c1/clp_PLctFbCTbQHXCAjZbsq2u/rian-pbMoTzs7an.mp4",
"user": {
"features": [
"stitch",
"clips:write",
null
],
"stripe_plan_group": "deid-trial",
"authorizer": "basic",
"owner_id": "auth0|65b6937e2ea99aebb0df77c1",
"id": "auth0|65b6937e2ea99aebb0df77c1",
"plan": "deid-trial",
"email": "[email protected]"
},
"owner_id": "auth0|65b6937e2ea99aebb0df77c1"
}

ANSWERED

Generative Animation Research

www.marvelunlimited.com x www.d-id.com could change the worlds of art, movies, animation, technology, user experience mobile apps. Imagine bringing Marvel Unlimited comics to life with an AI Animator that reads and animates the comics based on user prompts. This innovative approach would create a new way to experience art, enhancing user engagement and offering a unique reading experience.

ANSWERED

lite plan

I purchased the lite plan for 40 credits. I paid annually. These 40 credits will be renewed every month, right? Or can we only make 10 videos for 1 year?

ANSWERED

WATER MARKS

why did i keep seeing watermarks after paying $9.40 per monthly subscription

ANSWERED

IMPORTANT: Can I use driver_expression in talk stream mode?

const talkResponse = await fetch(
      `${DID_API.url}/talks/streams/${streamId}`,
      {
        method: "POST",
        headers: {
          Authorization: `Basic ${DID_API.key}`,
          "Content-Type": "application/json",
        },
        body: JSON.stringify({
          script: {
            type: 'text',
            subtitles: 'false',
            provider: {
              type: 'microsoft',
              voice_id: 'en-US-JennyNeural',
            },
            ssml: 'false',
            input: responseFromOpenAI_message, //send the openAIResponse to D-id
          },
          config: {
            fluent: true,
            pad_audio: 1,
            driver_expressions: {
              expressions: [
                {expression: 'happy', start_frame: 0, intensity: 1}],
              // transition_frames: 10
            },
            stitch: true,
            sharpen: false,
            
          },
          session_id: sessionId,
        }),
      }
    );