-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcvoice.xml
33 lines (33 loc) · 1.11 KB
/
cvoice.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!-- Voice selects Style by name.-->
<!-- https://docs.aws.amazon.com/polly/latest/dg/supportedtags.html -->
<voice style="chill" id="Salli" engine="standard" language="en-US" xmlns:amazon="amazon">
<style name="base"> <!-- Style start -->
<speak> <!-- SSML start -->
<prosody rate="100%">
{text}
</prosody>
</speak>
</style>
<style name="chill">
<speak>
<amazon:auto-breaths volume="medium" frequency="medium" duration="short">
<amazon:effect vocal-tract-length="105%">
<amazon:effect phonation="soft">
<prosody rate="100%">
{text}
</prosody>
</amazon:effect>
</amazon:effect>
</amazon:auto-breaths>
</speak>
</style>
<style name="rush">
<speak>
<amazon:effect vocal-tract-length="100%">
<prosody rate="105%">
{text}
</prosody>
</amazon:effect>
</speak>
</style>
</voice>