-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTextToSpeech.cs
109 lines (98 loc) · 3.44 KB
/
TextToSpeech.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
using NAudio.Dmo.Effect;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Speech.Synthesis;
using System.Text;
using System.Threading.Tasks;
namespace LLMAudioChat
{
public class TextToSpeech
{
StringBuilder sb = new StringBuilder();
SpeechSynthesizer synthesizer;
Queue<string> queue = new Queue<string>();
CancellationToken m_ct;
public TextToSpeech()
{
Initialize();
}
public void Initialize()
{
synthesizer = new SpeechSynthesizer();
synthesizer.SetOutputToDefaultAudioDevice();
synthesizer.Rate = 1;
Task.Run(async () => await SpeakTask());
}
public void Speak(IEnumerable<string> text_stream, CancellationToken ct)
{
m_ct = ct;
string last_chunk = "";
foreach (string s in text_stream)
{
if (ct.IsCancellationRequested)
{
Console.WriteLine("<<<Cancellation requested>>>");
queue.Clear();
sb.Clear();
return;
}
bool last_chunk_was_punctuation = (last_chunk.EndsWith('.') || last_chunk.EndsWith('!') || last_chunk.EndsWith('?') || last_chunk.EndsWith(';'));
bool this_chunk_is_space = (s.StartsWith(' ') || s.StartsWith('\n') || s.StartsWith('\r') || s.StartsWith('\t'));
bool split = (s==" and" || s==" or" || s==" but" || s==" so" || (last_chunk_was_punctuation && this_chunk_is_space));
if (!split)
{
sb.Append(s);
Console.Write(s);
}
else
{
string text_to_speak = sb.ToString();
queue.Enqueue(text_to_speak);
sb.Clear();
sb.Append(s);
Console.Write(s);
}
last_chunk = s;
}
queue.Enqueue(sb.ToString());
sb.Clear();
}
private async Task SpeakTask()
{
while (true)
{
if(queue.Count > 0)
{
StringBuilder sb2 = new StringBuilder();
while (queue.Count > 0)
{
sb2.Append(queue.Dequeue());
}
string string_to_speek = sb2.ToString();
if (string_to_speek.ToLower().EndsWith("user:"))
{
string_to_speek = string_to_speek.Substring(0, string_to_speek.Length - 5);
}
Prompt p = synthesizer.SpeakAsync(string_to_speek);
// wait for completion
while (!p.IsCompleted)
{
if (m_ct.IsCancellationRequested)
{
// Console.WriteLine("<<<Cancellation requested>>>");
synthesizer.SpeakAsyncCancelAll();
queue.Clear();
break;
}
await Task.Delay(10);
}
}
else
{
await Task.Delay(10);
}
}
}
}
}