File tree Expand file tree Collapse file tree 4 files changed +15
-6
lines changed
Expand file tree Collapse file tree 4 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 11dnl Use autogen.sh to regenerate the configure script
22AC_PREREQ ( [ 2.62] )
33AC_INIT ( [ mimic] ,
4- [ 1.3.0.0 ] ,
4+ [ 1.3.0.1 ] ,
55 [ https://github.com/MycroftAI/mimic/issues] )
66
77AC_CONFIG_AUX_DIR ( [ config] )
Original file line number Diff line number Diff line change @@ -78,15 +78,16 @@ void sigint_handler(int signum)
7878static 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
8686static 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"
Original file line number Diff line number Diff line change 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> */
Original file line number Diff line number Diff line change @@ -16,4 +16,12 @@ This <break /> is <break /> a pen.
1616You say <phoneme ph="t ax m ey1 t ow">tomato </phoneme> while I
1717say <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>
You can’t perform that action at this time.
0 commit comments