met4citizen / TalkingHead

Talking Head (3D): A JavaScript class for real-time lip-sync using Ready Player Me full-body 3D avatars.
MIT License
344 stars 105 forks source link

The output volume is too low #72

Closed audreytimbani closed 2 hours ago

audreytimbani commented 2 hours ago

The output volume is too low. Is it possible to speak a little louder?

met4citizen commented 2 hours ago

You can increase the volume with the setMixerGain method. The first parameter is for speech, and the second is for background audio (if any). For example:

head.setMixerGain(5,0);
audreytimbani commented 2 hours ago

Thanks