Skip to content

Commit

Permalink
Version bump 1.3.0.1, update copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
forslund committed Mar 6, 2020
2 parents 5e2c065 + f607612 commit adf655d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dnl Use autogen.sh to regenerate the configure script
AC_PREREQ([2.62])
AC_INIT([mimic],
[1.3.0.0],
[1.3.0.1],
[https://github.com/MycroftAI/mimic/issues])

AC_CONFIG_AUX_DIR([config])
Expand Down
7 changes: 4 additions & 3 deletions main/mimic_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,16 @@ void sigint_handler(int signum)
static void mimic_version()
{
printf(" Carnegie Mellon University, Copyright (c) 1999-2011, all rights reserved\n");
printf(" mimic developers, Copyright (c) 2016, all rights reserved\n");
printf(" version: %s-%s (%s)\n",
PACKAGE_NAME, PACKAGE_VERSION, PACKAGE_URL);
printf(" mimic developers, Copyright (c) 2016-2020, all rights reserved\n");
printf(" version: %s-%s\n",
PACKAGE_NAME, PACKAGE_VERSION);
}

static void mimic_usage()
{
printf("mimic: a small simple speech synthesizer\n");
mimic_version();
printf("Report bugs to %s.\n", PACKAGE_BUGREPORT);
printf("usage: mimic TEXT/FILE [WAVEFILE]\n"
" Converts text in TEXTFILE to a waveform in WAVEFILE\n"
" If text contains a space the it is treated as a literal\n"
Expand Down
2 changes: 1 addition & 1 deletion src/synth/cst_ssml.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
/* <audio ...> </audio> */
/* <!-- ... --> */
/* <break .../> */
/* <prosody ...> </prosody> rate volume (no pitch yet) */
/* <prosody ...> </prosody> pitch range rate volume */
/* <emphasis ...> </emphasis> */
/* <sub alias="World Wide Web Consortium">W3C</sub> */
/* <phoneme ph="x x x"> </phoneme> */
Expand Down
10 changes: 9 additions & 1 deletion tools/example.ssml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,12 @@ This <break /> is <break /> a pen.
You say <phoneme ph="t ax m ey1 t ow">tomato </phoneme> while I
say <phoneme ph="t ax m ae1 t ow">tomato</phoneme>.

</ssml>
<break />

<prosody rate=".25" pitch="131" range="6"><phoneme ph="ax" >A</phoneme></prosody>
<prosody rate=".25" pitch="174" range="6"><phoneme ph="m ey">ma</phoneme></prosody>
<prosody rate=".5" pitch="220" range="6"><phoneme ph="z ih" >zi</phoneme></prosody>
<prosody rate=".5" pitch="174" range="6"><phoneme ph="ih ng">ng</phoneme></prosody>
<prosody rate=".5" pitch="220" range="6">grace,</prosody>

</ssml>

0 comments on commit adf655d

Please sign in to comment.