-
Notifications
You must be signed in to change notification settings - Fork 21
/
SpeakManager.cs
175 lines (146 loc) · 5.77 KB
/
SpeakManager.cs
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
using NAudio.Wave;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text;
using System.Threading.Tasks;
namespace WinForm_Ollama_Copilot
{
internal class SpeakManager
{
private bool _WaitingForResponse = false;
private static readonly HttpClient client = new HttpClient();
public class ResultVoices
{
public List<string> _mVoices = new List<string>();
public string _mError = null;
}
public async Task<ResultVoices> GetVoices()
{
ResultVoices result = new ResultVoices();
try
{
HttpRequestMessage httpRequestMessage =
new HttpRequestMessage(HttpMethod.Get, "http://localhost:11438/get_voices");
var productValue = new ProductInfoHeaderValue("Speak_Client", "1.0");
var commentValue = new ProductInfoHeaderValue("(+http://localhost:11438/get_voices)");
httpRequestMessage.Headers.UserAgent.Add(productValue);
httpRequestMessage.Headers.UserAgent.Add(commentValue);
var response = await client.SendAsync(httpRequestMessage);
if (response != null)
{
using (HttpContent content = response.Content)
{
string pJsonContent = await content.ReadAsStringAsync();
JArray jarray = JArray.Parse(pJsonContent);
foreach (JObject jobject in jarray)
{
result._mVoices.Add(jobject["name"].ToString());
}
}
}
}
catch
{
result._mError = "Failed to reach TTS server. Is the server running?";
}
return result;
}
public async Task<bool> IsSpeaking()
{
try
{
HttpRequestMessage httpRequestMessage =
new HttpRequestMessage(HttpMethod.Get, "http://localhost:11438/is_speaking");
var productValue = new ProductInfoHeaderValue("Speak_Client", "1.0");
var commentValue = new ProductInfoHeaderValue("(+http://localhost:11438/is_speaking)");
httpRequestMessage.Headers.UserAgent.Add(productValue);
httpRequestMessage.Headers.UserAgent.Add(commentValue);
var response = await client.SendAsync(httpRequestMessage);
if (response != null)
{
using (HttpContent content = response.Content)
{
string pJsonContent = await content.ReadAsStringAsync();
JObject jobject = JObject.Parse(pJsonContent);
return jobject["speaking"].ToString() == "True";
}
}
}
catch (Exception ex)
{
if (ex != null)
{
}
}
return false;
}
public async void Speak(int voice, string sentence)
{
if (_WaitingForResponse)
{
return;
}
_WaitingForResponse = true;
try
{
HttpRequestMessage httpRequestMessage =
new HttpRequestMessage(HttpMethod.Post, "http://localhost:11438/speak");
JObject jobject = new JObject();
jobject["voice"] = voice;
jobject["sentence"] = sentence;
string pJsonContent = jobject.ToString();
HttpContent httpContent = new StringContent(pJsonContent, Encoding.UTF8, "application/json");
httpRequestMessage.Content = httpContent;
var productValue = new ProductInfoHeaderValue("Speak_Client", "1.0");
var commentValue = new ProductInfoHeaderValue("(+http://localhost:11438/speak)");
httpRequestMessage.Headers.UserAgent.Add(productValue);
httpRequestMessage.Headers.UserAgent.Add(commentValue);
var response = await client.SendAsync(httpRequestMessage);
if (response != null)
{
using (HttpContent content = response.Content)
{
await content.ReadAsStringAsync();
}
}
}
catch (Exception ex)
{
if (ex != null)
{
}
}
_WaitingForResponse = false;
}
public async Task Stop()
{
try
{
HttpRequestMessage httpRequestMessage =
new HttpRequestMessage(HttpMethod.Get, "http://localhost:11438/stop");
var productValue = new ProductInfoHeaderValue("Speak_Client", "1.0");
var commentValue = new ProductInfoHeaderValue("(+http://localhost:11438/stop)");
httpRequestMessage.Headers.UserAgent.Add(productValue);
httpRequestMessage.Headers.UserAgent.Add(commentValue);
var response = await client.SendAsync(httpRequestMessage);
if (response != null)
{
using (HttpContent content = response.Content)
{
await content.ReadAsStringAsync();
}
}
}
catch (Exception ex)
{
if (ex != null)
{
}
}
}
}
}