Skip to content

Commit adf655d

Browse files
committed
Version bump 1.3.0.1, update copyright
2 parents 5e2c065 + f607612 commit adf655d

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
dnl Use autogen.sh to regenerate the configure script
22
AC_PREREQ([2.62])
33
AC_INIT([mimic],
4-
[1.3.0.0],
4+
[1.3.0.1],
55
[https://github.com/MycroftAI/mimic/issues])
66

77
AC_CONFIG_AUX_DIR([config])

main/mimic_main.c

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,16 @@ void sigint_handler(int signum)
7878
static void mimic_version()
7979
{
8080
printf(" Carnegie Mellon University, Copyright (c) 1999-2011, all rights reserved\n");
81-
printf(" mimic developers, Copyright (c) 2016, all rights reserved\n");
82-
printf(" version: %s-%s (%s)\n",
83-
PACKAGE_NAME, PACKAGE_VERSION, PACKAGE_URL);
81+
printf(" mimic developers, Copyright (c) 2016-2020, all rights reserved\n");
82+
printf(" version: %s-%s\n",
83+
PACKAGE_NAME, PACKAGE_VERSION);
8484
}
8585

8686
static void mimic_usage()
8787
{
8888
printf("mimic: a small simple speech synthesizer\n");
8989
mimic_version();
90+
printf("Report bugs to %s.\n", PACKAGE_BUGREPORT);
9091
printf("usage: mimic TEXT/FILE [WAVEFILE]\n"
9192
" Converts text in TEXTFILE to a waveform in WAVEFILE\n"
9293
" If text contains a space the it is treated as a literal\n"

src/synth/cst_ssml.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
/* <audio ...> </audio> */
4848
/* <!-- ... --> */
4949
/* <break .../> */
50-
/* <prosody ...> </prosody> rate volume (no pitch yet) */
50+
/* <prosody ...> </prosody> pitch range rate volume */
5151
/* <emphasis ...> </emphasis> */
5252
/* <sub alias="World Wide Web Consortium">W3C</sub> */
5353
/* <phoneme ph="x x x"> </phoneme> */

tools/example.ssml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,12 @@ This <break /> is <break /> a pen.
1616
You say <phoneme ph="t ax m ey1 t ow">tomato </phoneme> while I
1717
say <phoneme ph="t ax m ae1 t ow">tomato</phoneme>.
1818

19-
</ssml>
19+
<break />
20+
21+
<prosody rate=".25" pitch="131" range="6"><phoneme ph="ax" >A</phoneme></prosody>
22+
<prosody rate=".25" pitch="174" range="6"><phoneme ph="m ey">ma</phoneme></prosody>
23+
<prosody rate=".5" pitch="220" range="6"><phoneme ph="z ih" >zi</phoneme></prosody>
24+
<prosody rate=".5" pitch="174" range="6"><phoneme ph="ih ng">ng</phoneme></prosody>
25+
<prosody rate=".5" pitch="220" range="6">grace,</prosody>
26+
27+
</ssml>

0 commit comments

Comments
 (0)