-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAudioVisualizer.cs
More file actions
293 lines (242 loc) · 11.4 KB
/
Copy pathAudioVisualizer.cs
File metadata and controls
293 lines (242 loc) · 11.4 KB
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
282
283
284
285
286
287
288
289
290
291
292
293
//Code sample: Sound visualizer using WPF and Core Audio API.
//Author: MSDN-WhiteKnight (https://github.com/MSDN-WhiteKnight)
//License: BSD 3-clause
//Based on:
//https://ru.stackoverflow.com/questions/586898/c-управление-уровнем-звука-приложения
//https://stackoverflow.com/a/14367829/8674428
//*Main window code-behind*
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Input;
using System.Windows.Media;
using System.Runtime.InteropServices;
using System.Timers;
namespace WpfApplication1
{
public partial class MainWindow : Window
{
IMMDeviceEnumerator deviceEnumerator=null;
IMMDevice speakers = null; //текущее аудиоустройство
Timer timer; //таймер для обновления UI
uint this_pid; //идентификатор этого процесса
public MainWindow()
{
InitializeComponent();
System.Diagnostics.Process pr = System.Diagnostics.Process.GetCurrentProcess();
using (pr)
{
this_pid = (uint)pr.Id;
}
// get default audio device
deviceEnumerator = (IMMDeviceEnumerator)(new MMDeviceEnumerator());
deviceEnumerator.GetDefaultAudioEndpoint(EDataFlow.eRender, ERole.eMultimedia, out speakers);
//start UI updating timer
timer = new Timer(100);
timer.Elapsed += timer_Elapsed;
timer.Enabled = true;
}
private void timer_Elapsed(object sender, ElapsedEventArgs e)
{
this.Dispatcher.Invoke(() =>
{
this.UpdateVisualizer();
});
}
//считывает текущее значение уровней звука и обновляет UI
public void UpdateVisualizer()
{
if (speakers == null) return;
IAudioSessionManager2 mgr = null;
IAudioSessionEnumerator sessionEnumerator = null;
IAudioSessionControl ctl = null;
IAudioSessionControl2 ctl2 = null;
IAudioMeterInformation meter = null;
try
{
// activate the session manager. we need the enumerator
Guid IID_IAudioSessionManager2 = typeof(IAudioSessionManager2).GUID;
object o;
speakers.Activate(ref IID_IAudioSessionManager2, 0, IntPtr.Zero, out o);
mgr = (IAudioSessionManager2)o;
// enumerate sessions for on this device
mgr.GetSessionEnumerator(out sessionEnumerator);
int count;
sessionEnumerator.GetCount(out count);
float max_val = 0.0f; //максимальное значение уровня звука для всех сессий
int h_min = 50, h_max = 120;//макс. и мин. значение высоты для эллипса
int hr;
uint pid = 0;
float val = 0.0f;
for (int i = 0; i < count; i++)
{
if (ctl != null) { Marshal.ReleaseComObject(ctl); ctl = null; }
if (ctl2 != null) { Marshal.ReleaseComObject(ctl2); ctl2 = null; }
if (meter != null) { Marshal.ReleaseComObject(meter); meter = null; }
//получаем WASAPI-сессию
hr = sessionEnumerator.GetSession(i, out ctl);
if (hr != 0) continue;
ctl2 = (IAudioSessionControl2)ctl;
pid = 0;
ctl2.GetProcessId(out pid);
if (pid != this_pid) continue; //интересуют только сессии текущего процесса
meter = (IAudioMeterInformation)ctl;
hr = meter.GetPeakValue(out val);//получаем уровень звука
if (hr != 0) { continue; }
if (val > max_val) max_val = val;
}
//изменяем высоту эллипса в соответствии со значением максимального уровня звука
ellVisualizer.Height = h_min + max_val * (h_max - h_min);
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString(), ex.GetType().ToString());
}
finally
{
//очистка ресурсов
if (sessionEnumerator != null) { Marshal.ReleaseComObject(sessionEnumerator); sessionEnumerator = null; }
if (mgr != null) { Marshal.ReleaseComObject(mgr); mgr = null; }
if (ctl != null) { Marshal.ReleaseComObject(ctl); ctl = null; }
if (ctl2 != null) { Marshal.ReleaseComObject(ctl2); ctl2 = null; }
if (meter != null) { Marshal.ReleaseComObject(meter); meter = null; }
}
}
private void Button_Click_1(object sender, RoutedEventArgs e)
{
media1.Play();
}
private void bStop_Click(object sender, RoutedEventArgs e)
{
media1.Stop();
}
private void bOpen_Click(object sender, RoutedEventArgs e)
{
Microsoft.Win32.OpenFileDialog ofd = new Microsoft.Win32.OpenFileDialog();
ofd.DefaultExt = "mp3";
ofd.Filter = "Audio files (WAV,MP3,WMA)|*.wav;*.mp3;*.wma|All files|*.*";
var res = ofd.ShowDialog(this);
if (res.HasValue)
{
if (res.Value != false)
{
media1.Source = new Uri(ofd.FileName);
}
}
}
}
// *** COM Objects declarations ***
[ComImport]
[Guid("BCDE0395-E52F-467C-8E3D-C4579291692E")]
internal class MMDeviceEnumerator
{
}
internal enum EDataFlow
{
eRender,
eCapture,
eAll,
EDataFlow_enum_count
}
internal enum ERole
{
eConsole,
eMultimedia,
eCommunications,
ERole_enum_count
}
[Guid("A95664D2-9614-4F35-A746-DE8DB63617E6"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
internal interface IMMDeviceEnumerator
{
int NotImpl1();
[PreserveSig]
int GetDefaultAudioEndpoint(EDataFlow dataFlow, ERole role, out IMMDevice ppDevice);
// the rest is not implemented
}
[Guid("D666063F-1587-4E43-81F1-B948E807363F"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
internal interface IMMDevice
{
[PreserveSig]
int Activate(ref Guid iid, int dwClsCtx, IntPtr pActivationParams, [MarshalAs(UnmanagedType.IUnknown)] out object ppInterface);
// the rest is not implemented
}
[Guid("77AA99A0-1BD6-484F-8BC7-2C654C9A9B6F"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
internal interface IAudioSessionManager2
{
int NotImpl1();
int NotImpl2();
[PreserveSig]
int GetSessionEnumerator(out IAudioSessionEnumerator SessionEnum);
// the rest is not implemented
}
[Guid("E2F5BB11-0570-40CA-ACDD-3AA01277DEE8"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
internal interface IAudioSessionEnumerator
{
[PreserveSig]
int GetCount(out int SessionCount);
[PreserveSig]
int GetSession(int SessionCount, out IAudioSessionControl Session);
}
[Guid("F4B1A599-7266-4319-A8CA-E70ACB11E8CD"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
internal interface IAudioSessionControl
{
int NotImpl1();
[PreserveSig]
int GetDisplayName([MarshalAs(UnmanagedType.LPWStr)] out string pRetVal);
// the rest is not implemented
}
//Источник: https://github.com/maindefine/volumecontrol/blob/master/C%23/CoreAudioApi/Interfaces/IAudioSessionControl2.cs
[Guid("bfb7ff88-7239-4fc9-8fa2-07c950be9c6d"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface IAudioSessionControl2
{
//IAudioSession functions
[PreserveSig]
int GetState(out object state);
[PreserveSig]
int GetDisplayName(out IntPtr name);
[PreserveSig]
int SetDisplayName(string value, Guid EventContext);
[PreserveSig]
int GetIconPath(out IntPtr Path);
[PreserveSig]
int SetIconPath(string Value, Guid EventContext);
[PreserveSig]
int GetGroupingParam(out Guid GroupingParam);
[PreserveSig]
int SetGroupingParam(Guid Override, Guid Eventcontext);
[PreserveSig]
int RegisterAudioSessionNotification(object NewNotifications);
[PreserveSig]
int UnregisterAudioSessionNotification(object NewNotifications);
//IAudioSession2 functions
[PreserveSig]
int GetSessionIdentifier( out IntPtr retVal);
[PreserveSig]
int GetSessionInstanceIdentifier( out IntPtr retVal);
[PreserveSig]
int GetProcessId( out UInt32 retvVal);
[PreserveSig]
int IsSystemSoundsSession();
[PreserveSig]
int SetDuckingPreference( bool optOut);
}
//Источник: https://github.com/maindefine/volumecontrol/blob/master/C%23/CoreAudioApi/Interfaces/IAudioMeterInformation.cs
[Guid("C02216F6-8C67-4B5B-9D00-D008E73E0064"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
internal interface IAudioMeterInformation
{
[PreserveSig]
int GetPeakValue(out float pfPeak);
[PreserveSig]
int GetMeteringChannelCount(out int pnChannelCount);
[PreserveSig]
int GetChannelsPeakValues( int u32ChannelCount,[In] IntPtr afPeakValues);
[PreserveSig]
int QueryHardwareSupport( out int pdwHardwareSupportMask);
};
}