summaryrefslogtreecommitdiffstats
path: root/examples/say.c
blob: 115c78fc04b20e7aa1a7308f71f23604a3bcc12e (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <sysexits.h>
#include <fcntl.h>
#include <math.h>

#include <xas/audio.h>
#include <xas/mixer.h>
#include <xas/riff.h>
#include <xas/synth.h>
#include <xas/vox.h>
#include <xas/bank.h>

#define SYNTH_STATUS_CLEAR  0
#define SYNTH_STATUS_ON    (1 << 0)

typedef struct _synth_sine {
    int flags;
    float phase;

    size_t frequency;
} synth_sine;

static void usage(int argc, char **argv, const char *message, ...) {
    va_list args;

    va_start(args, message);

    if (message) {
        vfprintf(stderr, message, args);
        fputc('\n', stderr);
    }

    va_end(args);

    fprintf(stderr, "usage: %s output.wav\n", argv[0]);

    exit(EX_USAGE);
}

int main(int argc, char **argv) {
    xas_mixer *mixer;

    xas_bank *bank;
    xas_vox *vox;

    xas_synth *sine_l,
                *sine_r;

    xas_bank_player *player;

    xas_audio_stream *voice,
                       *player_stream,
                       *synth_l,
                       *synth_r,
                       *output;

    xas_audio_format format = {
        .channels    = XAS_AUDIO_STEREO,
        .sample_size = XAS_AUDIO_PCM_16_BIT,
        .sample_rate = 44100
    };

    size_t buffer_size     = 735,
           duration_frames = 3600,
           i;

    if (argc != 2) {
        usage(argc, argv, "No output file provided");
    }

    if ((sine_l = xas_synth_new(format,
                                  buffer_size,
                                  XAS_SYNTH_SINE)) == NULL) {
        goto error_synth_new_l;
    }

    if ((sine_r = xas_synth_new(format,
                                  buffer_size,
                                  XAS_SYNTH_SINE)) == NULL) {
        goto error_synth_new_r;
    }

    if ((vox = xas_vox_new(format,
                             buffer_size,
                             "/usr/bin/text2wave")) == NULL) {
        goto error_vox_new;
    }

    if ((bank = xas_bank_new(format, 2646000, 4)) == NULL) {
        goto error_bank_new;
    }

    if ((player = xas_bank_player_new(bank)) == NULL) {
        goto error_bank_player_new;
    }

    if ((output = xas_riff_new_file(argv[1],
                                      format,
                                      O_WRONLY | O_CREAT | O_TRUNC)) == NULL) {
        goto error_riff_new_file;
    }

    if ((voice = xas_vox_stream_new(vox)) == NULL) {
        goto error_vox_stream_new;
    }

    if ((player_stream = xas_bank_player_stream_new(player)) == NULL) {
        goto error_bank_player_stream_new;
    }

    if ((synth_l = xas_synth_stream_new(sine_l)) == NULL) {
        goto error_synth_stream_new_l;
    }

    if ((synth_r = xas_synth_stream_new(sine_r)) == NULL) {
        goto error_synth_stream_new_r;
    }

    if ((mixer = xas_mixer_new(format, buffer_size)) == NULL) {
        goto error_mixer_new;
    }

    if (xas_mixer_input_add(mixer, player_stream, 1.0, 0.0) == NULL) {
        goto error_mixer_input_add;
    }

    if (xas_mixer_input_add(mixer, synth_l, 0.5, -1.0) == NULL) {
        goto error_mixer_input_add;
    }

    if (xas_mixer_input_add(mixer, synth_r, 0.5, 1.0) == NULL) {
        goto error_mixer_input_add;
    }

    xas_synth_set_frequency(sine_l, 220);
    xas_synth_start(sine_l);

    xas_synth_set_frequency(sine_r, 420);
    xas_synth_start(sine_r);

    /*
     * Time to fill the sample bank, meow!
     */
    xas_vox_set_voice(voice->ctx, "voice_cmu_us_slt_cg");

    xas_vox_say(vox, "I want to eat your soul.");
    xas_vox_say(vox, "You don't understand.");
    xas_vox_say(vox, "I really want to eat your soul.");

    xas_vox_generate(vox);

    if (xas_bank_record(bank, voice, 0, bank->entry_size) < 0) {
        goto error_bank_record;
    }

    xas_bank_player_set_entry(player, 0);

    for (i=0; i<duration_frames; i++) {
        void *buf;
        ssize_t readlen;

        if (i >= 300 && !xas_bank_player_playing(player)) {
            xas_bank_player_start(player);
        }

        if ((readlen = xas_audio_stream_read(mixer->output,
                                               &buf,
                                               buffer_size)) < 0) {
            goto error_audio_stream_read;
        }

        if (xas_audio_stream_write(output, buf, readlen) < 0) {
            goto error_audio_stream_write;
        }
    }

    xas_audio_stream_flush(output);

    xas_mixer_destroy(mixer);
    xas_audio_stream_destroy(synth_r);
    xas_audio_stream_destroy(synth_l);
    xas_synth_destroy(sine_r);
    xas_synth_destroy(sine_l);
    xas_audio_stream_destroy(player_stream);
    xas_audio_stream_destroy(voice);
    xas_audio_stream_destroy(output);

    xas_bank_player_destroy(player);
    xas_bank_destroy(bank);
    xas_vox_destroy(vox);

    return EX_OK;

error_audio_stream_write:
error_audio_stream_read:
error_bank_record:
error_mixer_input_add:
    xas_mixer_destroy(mixer);

error_mixer_new:
    xas_audio_stream_destroy(synth_r);

error_synth_stream_new_r:
    xas_audio_stream_destroy(synth_l);

error_synth_stream_new_l:
    xas_audio_stream_destroy(player_stream);

error_bank_player_stream_new:
    xas_audio_stream_destroy(voice);

error_vox_stream_new:
    xas_audio_stream_destroy(output);

error_riff_new_file:
    xas_bank_player_destroy(player);

error_bank_player_new:
    xas_bank_destroy(bank);

error_bank_new:
    xas_vox_destroy(vox);

error_vox_new:
    xas_synth_destroy(sine_r);

error_synth_new_r:
    xas_synth_destroy(sine_l);

error_synth_new_l:
    return EX_OSERR;
}