Discussions
How to stop HeyGen avatar moving if voice clip is muted?
3 months ago by Benul Jayasekara
Is there a way to force the avatar to be completely still (freeze motion) during silent sections of an uploaded voice clip?
I am using Create Avatar Video (V2) API with below settings.(https://docs.heygen.com/reference/create-an-avatar-video-v2)
"video_inputs": [
{
"character": {
"type": "talking_photo",
"talking_photo_id": "{{ $json.avatarId }}",
"scale": 0.85,
"expression": "default",
"offset": {
"x": 0.3,
"y": -0.04
},
"talkingStyle": "stable",
"matting": true
},
"voice": {
"type": "audio",
"duration": "1",
"audio_url": "{{ $json.audioFileUrl }}"
},
"background": {
"type": "video",
"play_style": "fit_to_scene",
"fit": "cover",
"url": "{{ $json.backgroundVideoFileUrl }}"
}
}
]