How to Set the Pause Between Sentences and Paragraphs
11-09-2025 , 08-09-2026
Every sentence and every paragraph in your text gets a pause. Set both for the whole text in Settings — from 150 ms to 30 seconds — and override any single spot with a <break> tag.
<break time="…"/> right there. Converting again after a pause change is free thanks to Smart Cache.
<break> override → Convert and compare.Type your text
Write or paste the text. Press Enter twice to leave a blank line — that is what makes a new paragraph. Here: two short paragraphs, two sentences each.
Two different pauses live in that text. A sentence pause falls after every period — two of them here:
The paragraph pause falls where you leave a blank line:
Convert once with the default pauses first — you will hear the difference after the next steps.
Open Settings
Click Settings under the text box, just above the Convert button.
Find Pause Control
The panel has three groups. The middle one, Pause Control, holds two dropdowns: ① Pause for paragraphs and ② Pause for sentences. The values shown are the current defaults — 400 ms and 300 ms.
Set the pause between sentences
Open the Pause for sentences dropdown and pick a value. The list runs from 150 ms to 30 seconds; here we choose 1000 ms — a full second after every sentence.
Set the pause between paragraphs
Do the same in Pause for paragraphs — here 3 sec. Both values now show in the panel: ① 3 sec between paragraphs, ② 1000 ms between sentences. They apply to the whole text and stay until you change them.
The paragraph pause is added on top of the sentence pause after the last sentence of a paragraph, so keep it equal to or longer than the sentence value.
Convert — and iterate for free
Click Convert to Speech. Every gap in the result now follows the new values.
Changing only the pauses does not re-synthesize the voice: ① the re-render is charged 0 credits, ② Smart Cache reused 100% of the audio. Try several values until the pacing feels right — it costs nothing.
Defaults and the range
Both dropdowns share the same list of values. 1 second = 1000 ms; values under a second are listed in milliseconds, longer ones in seconds.
Steps: 150 · 200 · 250 · 300 · 350 · 400 · 450 · 500 · 600 · 700 · 800 · 900 · 1000 ms · 1.3 · 1.5 · 2 · 3 · 4 · 5 · 10 · 20 · 30 sec. The same two values are available through the API as pause_sentence and pause_paragraph (in milliseconds).
Hear the same text with two settings
press play on eachOverride one spot with <break>
The global values apply everywhere. For a single gap that has to be different, put the SSML break tag right there — at the end of a sentence, at the start of the next one, or between them. At that spot the tag wins over the global setting.
- time="200ms" — the length of this one pause, in milliseconds (200ms) or seconds (1s, 2.5s). Minimum 150 ms.
In the walkthrough the global sentence pause is 1000 ms, but the two sentences of the first paragraph should run closer together. Typing <break time="200ms"/> right after the first one shortens just that gap.
Three places to put the tag
global pause 1 sec · break 200 msPauses between paragraphs
A paragraph is anything separated by one or more line breaks. To change one paragraph gap only, put the break at the end of that paragraph — or on a line of its own: a line that holds just the tag counts as a paragraph too.
Three paragraphs, three ways
global paragraph pause 1 secWhich values to use
Starting points that work for most voices — adjust by ear, every re-render is free.
Room to breathe between thoughts; scene changes get a clear gap.
Tight, energetic delivery — the defaults are made for this.
Give callers time to register each option before the next one.
Long silences let each instruction settle; use <break> for the longest ones.
The finished audio
The walkthrough text with 1000 ms between sentences, 3 sec between paragraphs and one 200 ms override.
Museum announcement
For developers — the same settings via the API
POST https://speechgen.io/index.php?r=api/text
{
"token": "…", "email": "…",
"voice": "Amber",
"text": "Welcome to the city museum. The guided tour begins in five minutes.\n\nPhotography is allowed in every hall.<break time=\"200ms\"/> Flash is not.",
"pause_sentence": 1000,
"pause_paragraph": 3000
}
<break>. For the pause icon, the SSML picker and more on breaks, see Pauses & Breaks.