123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720 |
- /***************************************************************************
- * Copyright (C) 2005 to 2007 by Jonathan Duddington *
- * email: [email protected] *
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 3 of the License, or *
- * (at your option) any later version. *
- * *
- * This program is distributed in the hope that it will be useful, *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
- * GNU General Public License for more details. *
- * *
- * You should have received a copy of the GNU General Public License *
- * along with this program; if not, write see: *
- * <http://www.gnu.org/licenses/>. *
- ***************************************************************************/
-
- #include "StdAfx.h"
-
- #include "speech.h"
-
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
-
- #ifndef PLATFORM_DOS
- #ifdef PLATFORM_WINDOWS
- #include <windows.h>
- #include <winreg.h>
- #else
- #include <unistd.h>
- #endif
- #endif
-
- #ifndef NEED_GETOPT
- #include <getopt.h>
- #endif
- #include <time.h>
- #include <signal.h>
- #include <locale.h>
- #include <sys/stat.h>
-
- #include "speak_lib.h"
- #include "phoneme.h"
- #include "synthesize.h"
- #include "voice.h"
- #include "translate.h"
-
-
-
- char path_home[N_PATH_HOME]; // this is the espeak-data directory
-
- char wavefile[120];
- int (* uri_callback)(int, const char *, const char *) = NULL;
- int (* phoneme_callback)(const char *) = NULL;
-
-
- static const char *help_text =
- "\nspeak [options] [\"<words>\"]\n\n"
- "-f <text file> Text file to speak\n"
- "--stdin Read text input from stdin instead of a file\n\n"
- "If neither -f nor --stdin, <words> are spoken, or if none then text is\n"
- "spoken from stdin, each line separately.\n\n"
- "-a <integer>\n"
- "\t Amplitude, 0 to 200, default is 100\n"
- "-g <integer>\n"
- "\t Word gap. Pause between words, units of 10mS at the default speed\n"
- "-l <integer>\n"
- "\t Line length. If not zero (which is the default), consider\n"
- "\t lines less than this length as end-of-clause\n"
- "-p <integer>\n"
- "\t Pitch adjustment, 0 to 99, default is 50\n"
- "-s <integer>\n"
- "\t Speed in words per minute 80 to 370, default is 170\n"
- "-v <voice name>\n"
- "\t Use voice file of this name from espeak-data/voices\n"
- "-w <wave file name>\n"
- "\t Write output to this WAV file, rather than speaking it directly\n"
- "-b\t Input text is 8-bit encoding\n"
- "-m\t Interpret SSML markup, and ignore other < > tags\n"
- "-q\t Quiet, don't produce any speech (may be useful with -x)\n"
- "-x\t Write phoneme mnemonics to stdout\n"
- "-X\t Write phonemes mnemonics and translation trace to stdout\n"
- "--stdout Write speech output to stdout\n"
- "--compile=<voice name>\n"
- "\t Compile the pronunciation rules and dictionary in the current\n"
- "\t directory. =<voice name> is optional and specifies which language\n"
- "--punct=\"<characters>\"\n"
- "\t Speak the names of punctuation characters during speaking. If\n"
- "\t =<characters> is omitted, all punctuation is spoken.\n"
- "--voices=<langauge>\n"
- "\t List the available voices for the specified language.\n"
- "\t If <language> is omitted, then list all voices.\n"
- "-k <integer>\n"
- "\t Indicate capital letters with: 1=sound, 2=the word \"capitals\",\n"
- "\t higher values = a pitch increase (try -k20).\n";
-
-
- void DisplayVoices(FILE *f_out, char *language);
-
- USHORT voice_pcnt[N_PEAKS+1][3];
-
-
-
- int GetFileLength(const char *filename)
- {//====================================
- struct stat statbuf;
-
- if(stat(filename,&statbuf) != 0)
- return(0);
-
- if((statbuf.st_mode & S_IFMT) == S_IFDIR)
- // if(S_ISDIR(statbuf.st_mode))
- return(-2); // a directory
-
- return(statbuf.st_size);
- } // end of GetFileLength
-
-
- char *Alloc(int size)
- {//==================
- char *p;
- if((p = (char *)malloc(size)) == NULL)
- fprintf(stderr,"Can't allocate memory\n");
- return(p);
- }
-
- void Free(void *ptr)
- {//=================
- if(ptr != NULL)
- free(ptr);
- }
-
-
- void DisplayVoices(FILE *f_out, char *language)
- {//============================================
- int ix;
- const char *p;
- int len;
- int count;
- int scores = 0;
- const espeak_VOICE *v;
- const char *lang_name;
- char age_buf[12];
- const espeak_VOICE **voices;
- espeak_VOICE voice_select;
-
- static char genders[4] = {' ','M','F',' '};
-
- if((language != NULL) && (language[0] != 0))
- {
- // display only voices for the specified language, in order of priority
- voice_select.languages = language;
- voice_select.age = 0;
- voice_select.gender = 0;
- voice_select.name = NULL;
- voices = espeak_ListVoices(&voice_select);
- scores = 1;
- }
- else
- {
- voices = espeak_ListVoices(NULL);
- }
-
- fprintf(f_out,"Pty Language Age/Gender VoiceName File Other Langs\n");
-
- for(ix=0; (v = voices[ix]) != NULL; ix++)
- {
- count = 0;
- p = v->languages;
- while(*p != 0)
- {
- len = strlen(p+1);
- lang_name = p+1;
-
- if(v->age == 0)
- strcpy(age_buf," ");
- else
- sprintf(age_buf,"%3d",v->age);
-
- if(count==0)
- {
- fprintf(f_out,"%2d %-12s%s%c %-17s %-11s ",
- p[0],lang_name,age_buf,genders[v->gender],v->name,v->identifier);
- }
- else
- {
- fprintf(f_out,"(%s %d)",lang_name,p[0]);
- }
- count++;
- p += len+2;
- }
- // if(scores)
- // fprintf(f_out,"%3d ",v->score);
- fputc('\n',f_out);
- }
- } // end of DisplayVoices
-
-
-
-
- static void PitchAdjust(int pitch_adjustment)
- {//==========================================
- int ix, factor;
-
- voice->pitch_base = (voice->pitch_base * pitch_adjust_tab[pitch_adjustment])/128;
-
- // adjust formants to give better results for a different voice pitch
- factor = 256 + (25 * (pitch_adjustment - 50))/50;
- for(ix=0; ix<=5; ix++)
- {
- voice->freq[ix] = (voice->freq2[ix] * factor)/256;
- }
- } // end of PitchAdjustment
-
-
- void MarkerEvent(int type, unsigned int char_position, int value, unsigned char *out_ptr)
- {//======================================================================================
- // Do nothing in the command-line version.
- } // end of MarkerEvent
-
-
-
- static void init_path(char *argv0)
- {//===============================
- #ifdef PLATFORM_WINDOWS
- HKEY RegKey;
- unsigned long size;
- unsigned long var_type;
- char *p;
- char *env;
- unsigned char buf[sizeof(path_home)-12];
-
- if(((env = getenv("ESPEAK_DATA_PATH")) != NULL) && ((strlen(env)+12) < sizeof(path_home)))
- {
- sprintf(path_home,"%s\\espeak-data",env);
- if(GetFileLength(path_home) == -2)
- return; // an espeak-data directory exists in the directory specified by environment variable
- }
-
- strcpy(path_home,argv0);
- if((p = strrchr(path_home,'\\')) != NULL)
- {
- strcpy(&p[1],"espeak-data");
- if(GetFileLength(path_home) == -2)
- return; // an espeak-data directory exists in the same directory as the espeak program
- }
-
- // otherwise, look in the Windows Registry
- buf[0] = 0;
- RegOpenKeyEx(HKEY_LOCAL_MACHINE, "Software\\Microsoft\\Speech\\Voices\\Tokens\\eSpeak", 0, KEY_READ, &RegKey);
- size = sizeof(buf);
- var_type = REG_SZ;
- RegQueryValueEx(RegKey, "path", 0, &var_type, buf, &size);
-
- sprintf(path_home,"%s\\espeak-data",buf);
- #else
- #ifdef PLATFORM_DOS
- strcpy(path_home,PATH_ESPEAK_DATA);
- #else
- char *env;
- if((env = getenv("ESPEAK_DATA_PATH")) != NULL)
- {
- snprintf(path_home,sizeof(path_home),"%s/espeak-data",env);
- if(GetFileLength(path_home) == -2)
- return; // an espeak-data directory exists
- }
-
- snprintf(path_home,sizeof(path_home),"%s/espeak-data",getenv("HOME"));
- if(access(path_home,R_OK) != 0)
- {
- strcpy(path_home,PATH_ESPEAK_DATA);
- }
- #endif
- #endif
- }
-
-
- static int initialise(void)
- {//========================
- int param;
- int result;
-
- // It seems that the wctype functions don't work until the locale has been set
- // to something other than the default "C". Then, not only Latin1 but also the
- // other characters give the correct results with iswalpha() etc.
- #ifdef PLATFORM_RISCOS
- setlocale(LC_CTYPE,"ISO8859-1");
- #else
- if(setlocale(LC_CTYPE,"en_US.UTF-8") == NULL)
- {
- if(setlocale(LC_CTYPE,"UTF-8") == NULL)
- setlocale(LC_CTYPE,"");
- }
- #endif
-
-
- WavegenInit(22050,0); // 22050
- if((result = LoadPhData()) != 1)
- {
- if(result == -1)
- fprintf(stderr,"Failed to load espeak-data\n");
- else
- fprintf(stderr,"Wrong version of espeak-data 0x%x (expects 0x%x)\n",result,version_phdata);
- }
- #ifndef PLATFORM_WINDOWS
- LoadConfig(); // causes problem on Windows, don't know why
- #endif
- SetVoiceStack(NULL);
- SynthesizeInit();
-
- for(param=0; param<N_SPEECH_PARAM; param++)
- param_stack[0].parameter[param] = param_defaults[param];
-
- return(0);
- }
-
-
- static void StopSpeak(int unused)
- {//==============================
- signal(SIGINT,SIG_IGN);
- // DEBUG
- // printf("\n*** Interrupting speech output (use Ctrl-D to actually quit).\n");
- fflush(stdout);
- SpeakNextClause(NULL,NULL,5);
- signal(SIGINT,StopSpeak);
- } // end of StopSpeak()
-
- #ifdef NEED_GETOPT
- struct option {
- char *name;
- int has_arg;
- int *flag;
- int val;
- };
- static int optind;
- static int optional_argument;
- static const char *arg_opts = "afklpsvw"; // which options have arguments
- static char *opt_string="";
- #define no_argument 0
- #define optional_argument 2
- #endif
-
- int main (int argc, char **argv)
- //==============================
- {
- static struct option long_options[] =
- {
- /* These options set a flag. */
- // {"verbose", no_argument, &verbose_flag, 1},
- // {"brief", no_argument, &verbose_flag, 0},
-
- /* These options don't set a flag.
- We distinguish them by their indices. */
- {"help", no_argument, 0, 'h'},
- {"stdin", no_argument, 0, 0x100},
- {"stdout", no_argument, 0, 0x101},
- {"compile", optional_argument, 0, 0x102},
- {"punct", optional_argument, 0, 0x103},
- {"voices", optional_argument, 0, 0x104},
- {0, 0, 0, 0}
- };
-
- static const char *err_load = "Failed to read ";
-
- FILE *f_text=NULL;
- const char *p_text=NULL;
-
- int option_index = 0;
- int c;
- int value;
- int speed=170;
- int ix;
- char *optarg2;
- int amp = 100; // default
- int wordgap = 0;
- int speaking = 0;
- int quiet = 0;
- int flag_stdin = 0;
- int flag_compile = 0;
- int pitch_adjustment = 50;
- char filename[120];
- char voicename[40];
- char dictname[40];
-
- voicename[0] = 0;
- mbrola_name[0] = 0;
- dictname[0] = 0;
- wavefile[0] = 0;
- filename[0] = 0;
- option_linelength = 0;
- option_phonemes = 0;
- option_waveout = 0;
- option_wordgap = 0;
- option_multibyte = espeakCHARS_AUTO; // auto
- f_trans = stdout;
-
- init_path(argv[0]);
-
- #ifdef NEED_GETOPT
- optind = 1;
- while(optind < argc)
- {
- int len;
- char *p;
-
- if((c = *opt_string) == 0)
- {
- opt_string = argv[optind];
- if(opt_string[0] != '-')
- break;
-
- optind++;
- opt_string++;
- c = *opt_string;
- }
- opt_string++;
- p = optarg2 = opt_string;
-
- if(c == '-')
- {
- opt_string="";
- for(ix=0; ;ix++)
- {
- if(long_options[ix].name == 0)
- break;
- len = strlen(long_options[ix].name);
- if(memcmp(long_options[ix].name,p,len)==0)
- {
- c = long_options[ix].val;
- optarg2 = NULL;
-
- if((long_options[ix].has_arg != 0) && (p[len]=='='))
- {
- optarg2 = &p[len+1];
- }
- break;
- }
- }
- }
- else
- if(strchr(arg_opts,c) != NULL)
- {
- opt_string="";
- if(optarg2[0]==0)
- {
- // the option's value is in the next argument
- optarg2 = argv[optind++];
- }
- }
- #else
- while(true)
- {
- c = getopt_long (argc, argv, "a:bf:g:hk:l:p:qs:v:w:xXm",
- long_options, &option_index);
-
- /* Detect the end of the options. */
- if (c == -1)
- break;
- optarg2 = optarg;
- #endif
-
- switch (c)
- {
- case 'b':
- option_multibyte = espeakCHARS_8BIT;
- break;
-
- case 'h':
- printf("\nspeak text-to-speech: %s\n%s",version_string,help_text);
- exit(0);
- break;
-
- case 'k':
- option_capitals = atoi(optarg2);
- break;
-
- case 'x':
- option_phonemes = 1;
- break;
-
- case 'X':
- option_phonemes = 2;
- break;
-
- case 'm':
- option_ssml = 1;
- break;
-
- case 'p':
- pitch_adjustment = atoi(optarg2);
- if(pitch_adjustment > 99) pitch_adjustment = 99;
- break;
-
- case 'q':
- quiet = 1;
- break;
-
- case 'f':
- strncpy0(filename,optarg2,sizeof(filename));
- break;
-
- case 'l':
- value = 0;
- value = atoi(optarg2);
- option_linelength = value;
- break;
-
- case 'a':
- amp = atoi(optarg2);
- break;
-
- case 's':
- speed = atoi(optarg2);
- break;
-
- case 'g':
- wordgap = atoi(optarg2);
- break;
-
- case 'v':
- strncpy0(voicename,optarg2,sizeof(voicename));
- break;
-
- case 'w':
- option_waveout = 1;
- strncpy0(wavefile,optarg2,sizeof(wavefile));
- break;
-
- case 0x100: // --stdin
- flag_stdin = 1;
- break;
-
- case 0x101: // --stdout
- option_waveout = 1;
- strcpy(wavefile,"stdout");
- break;
-
- case 0x102: // --compile
- if(optarg2 != NULL)
- strncpy0(voicename,optarg2,sizeof(voicename));
- flag_compile = 1;
- break;
-
- case 0x103: // --punct
- option_punctuation = 1;
- if(optarg2 != NULL)
- {
- ix = 0;
- while((ix < N_PUNCTLIST) && ((option_punctlist[ix] = optarg2[ix]) != 0)) ix++;
- option_punctlist[N_PUNCTLIST-1] = 0;
- option_punctuation = 2;
- }
- break;
-
- case 0x104: // --voices
- DisplayVoices(stdout,optarg2);
- exit(0);
-
- default:
- exit(0);
- }
- }
-
- initialise();
-
-
- if(flag_compile)
- {
- LoadVoice(voicename,5);
-
- #ifdef PLATFORM_DOS
- char path_dsource[sizeof(path_home)+20];
- strcpy(path_dsource,path_home);
- path_dsource[strlen(path_home)-11] = 0; // remove "espeak-data" from the end
- strcat(path_dsource,"dictsource\\");
- CompileDictionary(path_dsource,dictionary_name,NULL,NULL);
- #else
- #ifdef PLATFORM_WINDOWS
- char path_dsource[sizeof(path_home)+20];
- strcpy(path_dsource,path_home);
- path_dsource[strlen(path_home)-11] = 0; // remove "espeak-data" from the end
- strcat(path_dsource,"dictsource\\");
- CompileDictionary(path_dsource,dictionary_name,NULL,NULL);
- #else
- CompileDictionary(NULL,dictionary_name,NULL,NULL);
- #endif
- #endif
- exit(0);
- }
-
-
- if(voicename[0] == 0)
- strcpy(voicename,"default");
-
- if(SetVoiceByName(voicename) != EE_OK)
- {
- fprintf(stderr,"%svoice '%s'\n",err_load,voicename);
- exit(2);
- }
-
- SetParameter(espeakRATE,speed,0);
- SetParameter(espeakVOLUME,amp,0);
- SetParameter(espeakCAPITALS,option_capitals,0);
- SetParameter(espeakPUNCTUATION,option_punctuation,0);
- SetParameter(espeakWORDGAP,wordgap,0);
-
- if(pitch_adjustment != 50)
- {
- PitchAdjust(pitch_adjustment);
- }
- DoVoiceChange(voice);
-
- if(filename[0]==0)
- {
- if((optind < argc) && (flag_stdin == 0))
- {
- // there's a non-option parameter, and no -f or --stdin
- // use it as text
- p_text = argv[optind];
- }
- else
- {
- f_text = stdin;
- if(flag_stdin == 0)
- option_linelength = -1; // single input lines on stdin
- }
- }
- else
- {
- f_text = fopen(filename,"r");
- }
-
- if((f_text == NULL) && (p_text == NULL))
- {
- fprintf(stderr,"%sfile '%s'\n",err_load,filename);
- exit(1);
- }
-
- if(option_waveout || quiet)
- {
- if(quiet)
- {
- // no sound output
- OpenWaveFile(NULL,samplerate);
- option_waveout = 1;
- }
- else
- {
- // write sound output to a WAV file
- if(OpenWaveFile(wavefile,samplerate) != 0)
- {
- fprintf(stderr,"Can't write to output file '%s'\n'",wavefile);
- exit(3);
- }
- }
-
- InitText(0);
- SpeakNextClause(f_text,p_text,0);
-
- for(;;)
- {
- if(WavegenFile() != 0)
- {
- break; // finished, wavegen command queue is empty
- }
-
- if(Generate(phoneme_list,&n_phoneme_list,1)==0)
- SpeakNextClause(NULL,NULL,1);
- }
-
- CloseWaveFile(samplerate);
- }
- else
- {
- // Silence on ^C or SIGINT
- // signal(SIGINT,StopSpeak);
-
- // output sound using portaudio
- WavegenInitSound();
-
- InitText(0);
- SpeakNextClause(f_text,p_text,0);
-
- if(option_quiet)
- {
- while(SpeakNextClause(NULL,NULL,1) != 0);
- return(0);
- }
-
- #ifdef USE_PORTAUDIO
- speaking = 1;
- while(speaking)
- {
- // NOTE: if nanosleep() isn't recognised on your system, try replacing
- // this by sleep(1);
- #ifdef PLATFORM_WINDOWS
- Sleep(300); // 0.3s
- #else
- #ifdef USE_NANOSLEEP
- struct timespec period;
- struct timespec remaining;
- period.tv_sec = 0;
- period.tv_nsec = 300000000; // 0.3 sec
- nanosleep(&period,&remaining);
- #else
- sleep(1);
- #endif
- #endif
- if(SynthOnTimer() != 0)
- speaking = 0;
- }
- #else
- fprintf(stderr,"-w option must be used because the program was built without a sound interface\n");
- #endif // USE_PORTAUDIO
- }
- return(0);
- }
|