#can html tags be used in the script ? do you have a list?
1 messages · Page 1 of 1 (latest)
I'm sorry, but the provided content does not contain any information about using HTML tags in the script or a list of such tags. Could you please provide more details or ask a different question?
Title: Text-to-speech – ElevenLabs
Path: https://help.elevenlabs.io/hc/en-us/sections/23795023293073-Text-to-speech
can vtml tags be used in the script ? do you have a list?
I could not find any information about using HTML tags or a list of supported tags in the provided content. The content focuses on explaining how to share voice models in the ElevenLabs Voice Library and how to use the API to query available shared voices. It does not mention anything about using HTML tags or scripting.
If you have a specific question about ElevenLabs' capabilities regarding text formatting or supported markup, I'd recommend checking their documentation or reaching out to their support team for clarification.
sorry I meant vtml tags to include pauses etc
The most consistent way to add pauses in the text is by using the SSML (Speech Synthesis Markup Language) <break> tag. Here's how you can use it:
To add a pause, you can use the syntax <break time="1.5s" /> in the text where you want the pause to occur. The time attribute specifies the duration of the pause in seconds.
For example:
"Give me one second to think about it. <break time="1.0s" /> Yes, that would work."
This will create an exact and natural pause of 1 second in the speech. The AI has an understanding of this SSML syntax and will generate a natural pause, rather than just inserting silence.
However, there are a few caveats to keep in mind:
- The AI can handle pauses of up to 3 seconds in length using this method.
- Using an excessive number of
<break>tags might cause issues like the speech speeding up or introducing noise in the audio. - This feature is currently supported only in Speech Synthesis and via the API, not in Projects.
As an alternative, you can sometimes use dashes - or ellipses ... to indicate a pause, but these are less consistent and might not always work as intended.
In summary, the recommended way to add pauses is by using the <break time="..."> SSML tag, being mindful of not overusing it.
Title: Python Guide - ElevenLabs
Path: https://elevenlabs.io/docs/api-reference/python-text-to-speech-guide
what other SSML tags are available? can you give examples