dazzling-guitar-12115
08/09/2025, 8:53 AMtall-airline-16756
08/09/2025, 8:53 AMtall-airline-16756
08/09/2025, 8:53 AMspeed
parameter in the VoiceSettings
configuration. Here’s a quick guide:
When You’re Setting It Up:
from livekit.plugins.elevenlabs import TTS, VoiceSettings
tts = TTS(
voice_settings=VoiceSettings(
speed=1.2 # You can set this anywhere between 0.8 and 1.2
)
)
If You Want to Change It Later:
tts.update_options(
voice_settings=VoiceSettings(
speed=1.1 # Just pop in your new speed here
)
)
The speed
value is a float between 0.8
and 1.2
, where 1.0
is the regular speed. Feel free to play around with it to find what sounds best to you!dazzling-guitar-12115
08/09/2025, 8:54 AMtall-airline-16756
08/09/2025, 8:54 AMdazzling-guitar-12115
08/09/2025, 8:54 AMtall-airline-16756
08/09/2025, 8:54 AMspeed
parameter in the VoiceSettings
configuration. Here’s a quick guide to help you out:
When you’re setting it up:
from livekit.plugins.elevenlabs import TTS, VoiceSettings
tts = TTS(
voice_settings=VoiceSettings(
speed=1.2 # Just adjust this value anywhere between 0.8 and 1.2
)
)
If you want to change it after it’s already set up:
tts.update_options(
voice_settings=VoiceSettings(
speed=1.1 # Here’s where you pop in your new speed value
)
)
The speed
parameter is a float that goes from 0.8
to 1.2
, with 1.0
being the regular speed. Feel free to play around with it until it sounds just right for you!dazzling-guitar-12115
08/09/2025, 8:55 AMtall-airline-16756
08/09/2025, 8:55 AMfrom livekit.plugins.elevenlabs import TTS, VoiceSettings
tts = TTS(
voice_id="pzxut4zZz4GImZNlqQ3H",
model="eleven_multilingual_v2",
voice_settings=VoiceSettings(
speed=1.2 # Feel free to adjust this between 0.8 and 1.2
)
)
Just change the speed
value to whatever feels right for you within the 0.8 to 1.2 range—1.0 is the normal speed, by the way.