首頁 >後端開發 >C++ >如何使用 Core Audio API 以程式方式控制 Windows 中特定應用程式的音量?

如何使用 Core Audio API 以程式方式控制 Windows 中特定應用程式的音量?

Patricia Arquette
Patricia Arquette原創
2025-01-19 23:02:13671瀏覽

How Can I Programmatically Control the Volume of Specific Applications in Windows using the Core Audio API?

利用Windows核心音訊庫控制特定應用程式的音量

需求: 使用Windows音量混合器控制其他應用程式(例如Firefox)的音量。

實作:

Windows核心音訊庫提供存取和修改音訊裝置和會話屬性的功能。我們可以利用此程式庫以程式方式控制特定應用程式的音量。以下是一個C#範例實作:

<code class="language-csharp">using System;
using System.Runtime.InteropServices;
using System.Collections.Generic;

namespace SetAppVolume
{
    class Program
    {
        static void Main(string[] args)
        {
            const string app = "Mozilla Firefox";

            // 获取所有活动音频应用程序的列表
            foreach (string name in EnumerateApplications())
            {
                Console.WriteLine("应用名称:" + name);
                if (name == app)
                {
                    // 获取当前应用程序的音量和静音状态
                    float? volume = GetApplicationVolume(app);
                    bool? mute = GetApplicationMute(app);

                    if (volume.HasValue && mute.HasValue)
                    {
                        Console.WriteLine($"当前音量: {volume:F0}%,静音状态: {mute}");

                        // 将应用程序音量调整为50%
                        SetApplicationVolume(app, 50);

                        // 静音应用程序
                        SetApplicationMute(app, true);

                        Console.WriteLine($"音量已设置为 50%,并已静音。");
                    }
                    else
                    {
                        Console.WriteLine("无法获取应用程序音量或静音状态。");
                    }
                }
            }
        }

        // ... (GetApplicationVolume, GetApplicationMute, SetApplicationVolume, SetApplicationMute, EnumerateApplications 函数保持不变) ...
    }
}</code>

程式碼首先列舉所有活動的音訊應用程式。找到目標應用程式後,它會取得當前的音量和靜音狀態,然後將音量設為50%,並將其靜音。 為了增強程式碼的健全性,新增了對GetApplicationVolumeGetApplicationMute傳回值的空值檢查,並相應地處理了錯誤情況。 EnumerateApplications, GetApplicationVolume, GetApplicationMute, SetApplicationVolume, SetApplicationMute 函數的實作保持與原文相同,此處不再贅述。 請確保已新增必要的COM參考才能編譯此程式碼。

This revised response provides a more robust and user-friendly implementation by adding error handling and informative console output. Remember to include the necessary COM references for the Core API to compile and this compile

以上是如何使用 Core Audio API 以程式方式控制 Windows 中特定應用程式的音量?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn