C# AudioSwitcher System Audio/Sound Volume Control - 시스템 오디오/사운드 볼륨 컨트롤 1
C# 2022. 1. 6. 15:45 |AudioSwitcher를 이용해 시스템 볼륨을 조정해 보자.
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
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.InteropServices;
using AudioSwitcher.AudioApi.CoreAudio;
namespace ConsoleApp1
{
class Program
{
[DllImport("kernel32.dll")]
static extern IntPtr GetConsoleWindow();
[DllImport("user32.dll")]
static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
static void Main(string[] args)
{
const int SW_HIDE = 0; // 창 숨기기
const int SW_SHOW = 1; // 창 보이기
IntPtr handle = GetConsoleWindow();
//ShowWindow(handle, SW_HIDE);
CoreAudioDevice defaultPlaybackDevice = new CoreAudioController().DefaultPlaybackDevice;
Console.WriteLine("Current Volume: " + defaultPlaybackDevice.Volume);
while (true)
{
if (defaultPlaybackDevice.Volume > 20) // 볼륨이 20 보다 크다면
{
while (defaultPlaybackDevice.Volume > 20) // 볼륨이 20 보다 크지 않을때 까지 무한 루프
{
defaultPlaybackDevice.Volume--; // 볼륨 1 감소
Console.WriteLine("Current Volume: " + defaultPlaybackDevice.Volume);
System.Threading.Thread.Sleep(1000); // 매 1초 확인
}
}
System.Threading.Thread.Sleep(10000); // 매 10초 확인
}
}
}
}
|
소스를 입력하고 빌드한다.
2022.01.07 - [C#] - C# AudioSwitcher System Audio/Sound Volume Control - 시스템 오디오/사운드 볼륨 컨트롤 2