-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAudioLevelMonitor.cs
281 lines (238 loc) · 8.96 KB
/
AudioLevelMonitor.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
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
using NAudio.Wave;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LLMAudioChat
{
// define custom EventArgs with MemoryStream called MemoryStreamEventArgs
public class MemoryStreamEventArgs : EventArgs
{
public MemoryStream MemoryStream { get; set; }
}
public class AudioLevelMonitor
{
private const int SampleRate = 16000; // 16 kHz
private const int SampleRate_ms = SampleRate / 1000;
private const int BitsPerSample = 16; // 8 bits
private const int Channels = 1; // mono
private const int BytesPerSample = BitsPerSample / 8;
private const int BufferSize_ms = 4 * (QuietTime_ms + LoudTime_ms);
private const int BufferSize_bytes = SampleRate_ms * BytesPerSample * Channels * BufferSize_ms;
private const int WaveBufferSize_ms = 100;
private const int WaveBufferSize_bytes = BytesPerSample * WaveBufferSize_ms * SampleRate_ms;
private const int AudioLevelBufferSize_bins = BufferSize_ms / WaveBufferSize_ms;
private const int QuietTime_ms = 1000;
private const int LoudTime_ms = 1000;
private const int QuietTime_bins = QuietTime_ms / WaveBufferSize_ms;
private const int LoudTime_bins = LoudTime_ms / WaveBufferSize_ms;
private int CurrentPositionInAudioLevel = 0;
private float threshold; // below is quiet, above is loud
private byte[] circularBuffer;
private int writePosition = 0;
private WaveInEvent waveIn;
MemoryStream PCM_ms;
public event EventHandler<MemoryStreamEventArgs> OnWavAudioStreamReady;
private bool IsRecording { get; set; } = false;
public bool IsLoud { get; private set; } = false; // analyzer mode
public float[] AudioLevel { get; private set; }
public long TotalBytesRecorded { get; private set; } = 0;
public int ms2bytes(int ms)
{
return ms * SampleRate_ms * BytesPerSample * Channels;
}
public int bytes2ms(int bytes)
{
return bytes / (SampleRate_ms * BytesPerSample * Channels);
}
public int ms2samples(int ms)
{
return ms * SampleRate_ms;
}
public int samples2ms(int samples)
{
return samples / SampleRate_ms;
}
public AudioLevelMonitor(float a_threshold)
{
threshold = a_threshold;
CurrentPositionInAudioLevel = 0;
circularBuffer = new byte[BufferSize_bytes];
// fill CircularBuffer with 0
for (int i = 0; i < BufferSize_bytes; i++)
{
circularBuffer[i] = 0;
}
AudioLevel = new float[AudioLevelBufferSize_bins];
// fill AudioLevel with 0
for (int i = 0; i < AudioLevelBufferSize_bins; i++)
{
AudioLevel[i] = 0;
}
waveIn = new WaveInEvent();
waveIn.WaveFormat = new WaveFormat(SampleRate, BitsPerSample, Channels);
//waveIn.DeviceNumber = 0;
waveIn.BufferMilliseconds = WaveBufferSize_ms;
waveIn.DataAvailable += OnDataAvailable;
}
private void OnDataAvailable(object? sender, WaveInEventArgs e)
{
if (e.BytesRecorded != WaveBufferSize_bytes)
{
Console.WriteLine($"OnDataAvailable: e.BytesRecorded = {e.BytesRecorded} WaveBufferSizeInBytes: {WaveBufferSize_bytes} mismatch");
return;
}
float sum = 0;
for (int i = 0; i < e.BytesRecorded; i++)
{
circularBuffer[writePosition] = e.Buffer[i];
writePosition = (writePosition + 1) % BufferSize_bytes;
TotalBytesRecorded++;
}
for (int i = 0; i < e.BytesRecorded; i += BytesPerSample)
{
short sample = BitConverter.ToInt16(e.Buffer, i);
sum += Math.Abs(sample);
}
sum /= e.BytesRecorded;
CurrentPositionInAudioLevel = (int)(TotalBytesRecorded % circularBuffer.LongLength) / WaveBufferSize_bytes;
if (CurrentPositionInAudioLevel >= AudioLevel.Length)
{
Console.WriteLine($"OnDataAvailable: CurrentPositionInAudioLevel = {CurrentPositionInAudioLevel} AudioLevel.Length: {AudioLevel.Length} mismatch");
return;
}
AudioLevel[CurrentPositionInAudioLevel] = sum / 32768f;
Analyzer();
if (IsLoud)
{
// copy to memory stream PCM_ms
PCM_ms.Write(e.Buffer, 0, e.BytesRecorded);
}
}
public void StartRecording()
{
waveIn.StartRecording();
IsRecording = true;
}
public void StopRecording()
{
waveIn.StopRecording();
IsRecording = false;
}
// analyzer
private void Analyzer()
{
if (IsLoud)
{
if (CheckForQuiet())
{
Task.Run(() => FireOnWavAudioStreamReady());
IsLoud = false; // stop recording to MemoryStream
Console.WriteLine("Analyzer: Quiet");
}
}
else
{
if (CheckForLoud())
{
PCM_ms = new MemoryStream();
// copy from circular buffer to PCM_ms
CopyLoudFromCircularBufferToPCM_ms();
IsLoud = true; // start recording to MemoryStream
Console.WriteLine("Analyzer: Loud");
}
}
}
private void CopyLoudFromCircularBufferToPCM_ms()
{
// find starting position - go back (loud time + quiet time)
int start = (int)(TotalBytesRecorded % (long)BufferSize_bytes) - (ms2bytes(LoudTime_ms) + ms2bytes(QuietTime_bins));
if (start < 0)
{
start += BufferSize_bytes;
}
int how_many_to_copy = ms2bytes(LoudTime_ms);
// last buffer will be copied, so let's subtract it
how_many_to_copy -= ms2bytes(WaveBufferSize_ms);
for (int i = 0; i < how_many_to_copy; i++)
{
PCM_ms.WriteByte(circularBuffer[start]);
start = (start + 1) % BufferSize_bytes;
}
}
void FireOnWavAudioStreamReady()
{
if (OnWavAudioStreamReady != null)
{
MemoryStream wavStream = ConvertPCMToWav(PCM_ms);
MemoryStreamEventArgs args = new MemoryStreamEventArgs();
args.MemoryStream = wavStream;
OnWavAudioStreamReady?.Invoke(this, args);
}
}
private bool CheckForQuiet()
{
if (CountLoud(QuietTime_bins) == 0)
{
return true;
}
else
{
return false;
}
}
private bool CheckForLoud()
{
if (CountLoud(LoudTime_bins) > (LoudTime_bins * 3) / 4) // 75% of bins
{
return true;
}
else
{
return false;
}
}
public int CountLoud(int bins)
{
int idx = CurrentPositionInAudioLevel;
int loud_cnt = 0;
for (int i=0; i<QuietTime_bins; i++)
{
if (AudioLevel[idx] > threshold)
{
loud_cnt++;
}
idx--;
if (idx < 0)
{
idx = AudioLevelBufferSize_bins - 1;
}
}
return loud_cnt;
}
public MemoryStream ConvertPCMToWav(MemoryStream pcmStream)
{
pcmStream.Position = 0;
MemoryStream wavStream = new MemoryStream();
WaveFormat waveFormat = new WaveFormat(16000, 16, 1);
RawSourceWaveStream rawSource = new RawSourceWaveStream(pcmStream, waveFormat);
WaveFileWriter waveWriter = new WaveFileWriter(wavStream, rawSource.WaveFormat);
byte[] buffer = new byte[1024];
int bytesRead;
while ((bytesRead = rawSource.Read(buffer, 0, buffer.Length)) > 0)
{
waveWriter.Write(buffer, 0, bytesRead);
}
// Update WAV header with correct RIFF chunk size
long dataSize = pcmStream.Length;
wavStream.Position = 4;
byte[] sizeBytes = System.BitConverter.GetBytes((uint)dataSize);
wavStream.Write(sizeBytes, 0, 4);
wavStream.Position = 0x2A;
wavStream.Write(sizeBytes, 0, 4);
wavStream.Position = 0;
return wavStream;
}
}
}