Discussions

Ask a Question
Back to All

Video quality suddenly decreased

Dear Support Team,

I have been using D-Id to generate videos from text prompts and have been very happy with the quality until today. I noticed a sudden and significant decrease in the output video quality - the videos now look very grainy and pixelated, almost unusable.

I also observed that the file size of the generated clips has dropped b compared to previous outputs.

I have an important demo scheduled for later today, so prompt action on this issue would be greatly appreciated. I am using the API and calling it from a C# client.

Here was the generated video:

https://d-id-clips-prod.s3.us-west-2.amazonaws.com/google-oauth2%7C107690238415990643592/clp_EsHV8h2Y60uIWhVF9qPPm/amy-jcwCkr1grs.mp4?AWSAccessKeyId=AKIA5CUMPJBIJ7CPKJNP&Expires=1695311927&Signature=tZaAo8WVgbjxFETgLbx33DP3h2k%3D&X-Amzn-Trace-Id=Root%3D1-650b16b7-36fc4a5706fa65420809b1e1%3BParent%3D7548d3ba1e245e2d%3BSampled%3D0%3BLineage%3D84e41ec0%3A0

My inputs are:

    var requestBody = new
        {
            script = new
            {
                type = "text",
                input = text,
                provider = new
                {
                    type = "microsoft",
                    voice_id = "en-US-JennyNeural",
                    voice_config = new
                    {
                        style = "Cheerful"
                    }
				},
            },
            presenter_id = "amy-jcwCkr1grs",
            driver_id = "uM00QMwJ9x",
            background = new
            {
                color = "#F1F2F6"
            }
        };

Thanks.