-
Notifications
You must be signed in to change notification settings - Fork 0
/
linto2soc_mic.c
171 lines (141 loc) · 5.17 KB
/
linto2soc_mic.c
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <libwebsockets.h>
#include <jansson.h>
#include <openssl/ssl.h>
#include <openssl/err.h>
#define AUDIO_FILE_PATH "audio.wav"
#define CONFIG_JSON "{\"config\": {\"sample_rate\":192000}}"
static int callback(struct lws *wsi, enum lws_callback_reasons reason,
void *user, void *in, size_t len)
{
unsigned char buf[LWS_PRE + 131072];
unsigned char *p = &buf[LWS_PRE];
static FILE *audio_file;
size_t n;
switch (reason) {
case LWS_CALLBACK_CLIENT_ESTABLISHED:
printf("WebSocket connection established\n");
// Send config JSON
n = sprintf((char *)p, "%s", CONFIG_JSON);
lws_write(wsi, p, n, LWS_WRITE_TEXT);
// Open audio file
// audio_file = fopen(AUDIO_FILE_PATH, "rb");
// audio_file = popen("arecord -f cd -t wav --rate=16000", "r");
// audio_file = popen("ffmpeg -f alsa -i default -b:a 16k -f wav -", "r");
// ffmpeg -f alsa -i default -ar 16000 -ac 1 -acodec pcm_s16le -f wav -"
audio_file = popen("ffmpeg -f alsa -i default -ar 192000 -ac 1 -acodec pcm_s16le -hide_banner -loglevel quiet -nostats -f wav -", "r");
if (audio_file == NULL) {
fprintf(stderr, "Failed to open audio file\n");
return -1;
}
break;
case LWS_CALLBACK_CLIENT_RECEIVE:
json_t *root, *text;
json_error_t error;
root = json_loads((const char *)in, 0, &error);
if (!root) {
fprintf(stderr, "error: on line %d: %s\n", error.line, error.text);
return -1;
}
// Variable pour l'écriture dans un fichiet d output
//
FILE *fichier;
const char *nom_fichier = "sortie.txt";
// const char *texte = "Texte à écrire dans le fichier";
text = json_object_get(root, "text");
if (json_is_string(text)) {
fprintf(stdout, "%s\n", json_string_value(text));
fflush(stdout);
// printf("%s\n", json_string_value(text));
// printf("Received data: %s\n", (char *)in);
// print to file
fichier = fopen(nom_fichier, "a");
if (fichier == NULL) {
fprintf(stderr, "Erreur lors de l'ouverture du fichier %s\n", nom_fichier);
return 1;
}
fprintf(fichier, "%s\n", json_string_value(text));
fflush(fichier);
fclose(fichier);
}
json_decref(root);
break;
// printf("Received data: %s\n", (char *)in);
// break;
case LWS_CALLBACK_CLIENT_WRITEABLE:
// Send audio data
if (audio_file != NULL) {
n = fread(p, 1, sizeof(buf) - LWS_PRE, audio_file);
if (n > 0) {
lws_write(wsi, p, n, LWS_WRITE_BINARY);
} else {
fclose(audio_file);
audio_file = NULL;
}
}
break;
default:
break;
}
return 0;
}
static struct lws_protocols protocols[] = {
{
"my-protocol",
callback,
0,
0,
},
{ NULL, NULL, 0, 0 } /* terminator */
};
int main(int argc, char **argv)
{
if (argc > 1 && (strcmp(argv[1], "-h") == 0 || strcmp(argv[1], "--help") == 0)) {
printf("Usage: %s \n\nLancez simplement l'executable pour capturer live l'audio de votre micro et le transcrire en texte FR dans votre terminal\nCe programme utilise l'engine speech to text LINTO AI https://github.com/linto-ai/\nCe programme utilise le backend free-solutions.org en Suisse pour transcrire le text\nC'est une approche pour avoir le contrôle total sur les transcrptions texte\nC'est expérimental et donc merci de ne pas utiliser pour un service\nMe contacter si vous avez des besoins dans le domaine\n", argv[0]);
printf("Options:\n");
printf(" -h, --help display this help and exit\n");
return 0;
}
struct lws_context_creation_info info;
struct lws_client_connect_info i;
struct lws_context *context;
const char *url = "linto.free-solutions.org";
// const char *url = "wss://linto.free-solutions.org";
int port = 8081;
// Adons CST
//lws_set_log_level(LLL_ERR | LLL_WARN | LLL_NOTICE | LLL_INFO, NULL);
info.ssl_ca_filepath = "/etc/ssl/certs/ca-certificates.crt";
info.options = LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT;
memset(&info, 0, sizeof info);
info.port = CONTEXT_PORT_NO_LISTEN;
info.protocols = protocols;
info.gid = -1;
info.uid = -1;
context = lws_create_context(&info);
if (context == NULL) {
fprintf(stderr, "Failed to create context\n");
return -1;
}
memset(&i, 0, sizeof(i));
i.context = context;
i.address = url;
i.port = port;
i.path = "/streaming";
i.host = i.address;
i.origin = i.address;
i.ssl_connection = 0; // No SSL
// i.ssl_connection = LCCSCF_USE_SSL; // Use SSL
i.protocol = protocols[0].name;
if (lws_client_connect_via_info(&i) == NULL) {
fprintf(stderr, "Failed to connect to server\n");
return -1;
}
while (1) {
lws_service(context, 1000);
lws_callback_on_writable_all_protocol(context,&protocols[0]);
}
lws_context_destroy(context);
return 0;
}