Discussions

Ask a Question

When I swap video in template how I cat auto mute video in template?

When I swap video in template how I cat auto mute video in template?

Answered

How change voice to mp3 file in template?

"script_ru_voice": {
"name": "script_ru_voice",
"type": "voice",
"properties": {
"voice_id": "1156e00bc07f47cd94facef758b51f25",

Answered

Video template help from make.com

Hello
I am making a HTTP request from make.com and trying to use the template from the API documentation, I get a code 200 but no video processed. I also get an error message. I just have a single {{scrip}} variable for now to start with and passing on the content below:

Talk with voice message

I want to chat with the avatar in audio mode, how can I proceed?

Answered

Can I hardcode captions?

Is there a way to embed captions inside the video? Not in external files.

Answered

await avatar.startVoiceChat is not working

try {
    const token = await fetchAccessToken();
    avatar = new StreamingAvatar({ token });

    // Initialize OpenAI Assistant
    // const openaiApiKey = process.env.OPENAI_API_KEY;
    // if (!openaiApiKey) {
    // throw new Error("OPENAI_API_KEY is not defined in environment variables.");
    // }
    openaiAssistant = new OpenAIAssistant(openaiApiKey);
    await openaiAssistant.initialize();

    sessionData = await avatar.createStartAvatar({
    quality: AvatarQuality.Medium,
    avatarName: "ef08039a41354ed5a20565db899373f3",
    language: "English",
    });
    await avatar.startVoiceChat({
        useSilencePrompt: false
    });
Answered

Interactive Avatar not shareable

When I create an interactive avatar and share it with someone else, the avatar doesn't perform any actions for them, even though it works perfectly fine for me. Is this a common experience for others as well?

Answered

Is there an API for the Lab function "Instant Highlights"?

Hi,

Answered

How to call and use an interactive avatar on an external site using the API? How to invoke an interactive avatar with a specific knowledge base?

I want to call an interactive avatar that I've created, not within the Heygen site, but using an API in an external application that I've developed. I believe I need to specify the customized interactive avatar that I've created. (in the code of the application I'm developing).