C 操作聲音

2021-10-04 20:19:08 字數 605 閱讀 5371

1、用user32.dll

2、用coreaudioapi.dll

下了乙個也不行

中文的,基本上沒啥別的內容了

3、最後用google搜了下,發現了這個,如下:

引入後就很簡單了:

private coreaudiodevice defaultplaybackdevice = null;

defaultplaybackdevice = new coreaudiocontroller().defaultplaybackdevice;

//獲取當前音量

double vol = defaultplaybackdevice.volume;

//設定音量

defaultplaybackdevice.setvolumeasync(v);

//是否靜音

defaultplaybackdevice.ismuted;

//設定靜音

defaultplaybackdevice.setmuteasync(true);

環境:win10,vs2013 

C 錄製音效卡聲音喇叭聲音音箱聲音

第一步 在引用了sharpcapture.dll之後,呼叫sharpcapture方法之前,一定要先通過下面 來設定授權資訊,如果是試用版,直接輸入test即可。keymgr.setkey test 從之前的一篇博文中,我們介紹了一張圖看懂sharpcapture,從那篇文章我們可以看出,sharp...

spring事務操作宣告式事務管理引數配置)

1.propagationo 事務的傳播行為 2.事務隔離級別 下面是 示例 package cn.zsp.spring5.service import cn.zsp.spring5.dao.userdao import cn.zsp.spring5.dao.userdaoimpl import o...

C 視窗聲音 提示音

在c 編寫程式時,想在彈出提示視窗時beep 一下,發現竟然沒有beep 功能。在網上查了一下,發現確實如此。fcl中對多煤體的支援非常的弱。解決方法一 可以呼叫win32的api system.runtime.interopservices.dllimport user32.dll public ...