Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/espeak.h
blob: b0e3f652bb00cc12dfb58c110ead324f5fdf8252 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

#ifndef ESPEAK_H
#define ESPEAK_H

#define ESPEAK_DEFAULT_PITCH  50
#define ESPEAK_DEFAULT_RATE   170 
#define ESPEAK_DEFAULT_VOICE  "default"

struct _Espeak;
typedef struct _Espeak Espeak;

struct _Espeak* espeak_new();
void            espeak_unref(struct _Espeak*);
gint            espeak_get_sample_rate();
gchar**         espeak_get_voices();
void            espeak_set_pitch(struct _Espeak*, guint);
void            espeak_set_rate(struct _Espeak*, guint);
void            espeak_set_voice(struct _Espeak*, const gchar*);
void            espeak_say(struct _Espeak*, const gchar *text);
gpointer        espeak_hear(struct _Espeak*, gsize);

#endif