Discussions
avatar.speak in typscript sends prompt isntead of using exact text
I have my typscript here using the SDK, .speak is supposed to be default "TALK" right? Why does it sends prompt instead? What command should I send? Also it keeps saying about heygen heygen. I want it to speak my "textToSpeak" variable.
Creating (recording) an Interactive Avatar in other language
Can I record an actor speaking in a language other than English (e.g., Spanish) to create an interactive avatar? In other words, is it possible to record the actor delivering their lines in Spanish for this purpose?
HEYGEN API TEMPLATE
In your heygen free API plan, it says that we can produce videos from templates, but when I try to produce it, it gives me an error because the templates are 1920 1080 and the free plan only allows 720p. How can I reduce the resolution of the templates? There is no such option.
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?
see error 'Daily rate limit exceeded'
This continues an old thread. See: https://docs.heygen.com/discuss/673412b7a6e2b6003dae4dec
How change voice to mp3 file in template?
"script_ru_voice": {
"name": "script_ru_voice",
"type": "voice",
"properties": {
"voice_id": "1156e00bc07f47cd94facef758b51f25",
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?
Can I hardcode captions?
Is there a way to embed captions inside the video? Not in external files.
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
});
