0
|
1 |
/**
|
|
2 |
* $Id: festival_interface.h 53 2008-01-10 00:19:41Z mbroeker $
|
|
3 |
* $URL: http://localhost/svn/c/VirtualReader/trunk/include/festival_interface.h $
|
|
4 |
*/
|
|
5 |
|
|
6 |
#ifndef __FESTIVAL_INTERFACE_H__
|
|
7 |
#define __FESTIVAL_INTERFACE_H__
|
|
8 |
|
|
9 |
#include <stdio.h>
|
|
10 |
#include <stdlib.h>
|
|
11 |
#include <string.h>
|
|
12 |
#include <ctype.h>
|
|
13 |
#include <getopt.h>
|
|
14 |
|
|
15 |
typedef struct {
|
|
16 |
char *TextFile;
|
|
17 |
char *AudioFile;
|
|
18 |
char *Voice;
|
|
19 |
char *Path;
|
|
20 |
} tts_options;
|
|
21 |
|
|
22 |
typedef struct {
|
|
23 |
} ttshandles;
|
|
24 |
|
|
25 |
tts_options interface_get_cl_opts (int, char **);
|
|
26 |
|
|
27 |
int interface_write_to_wav (char *, char *, ttshandles, tts_options);
|
|
28 |
ttshandles interface_init (tts_options);
|
|
29 |
long *interface_get_timing (ttshandles, char *);
|
|
30 |
|
|
31 |
#endif
|