我該如何控制 "麥克風" 的音量??? |
答題得分者是:hagar
|
AsureNick
一般會員 發表:10 回覆:10 積分:4 註冊:2007-03-07 發送簡訊給我 |
|
hagar
版主 發表:143 回覆:4056 積分:4445 註冊:2002-04-14 發送簡訊給我 |
參考:
http://groups.google.com.tw/group/borland.public.delphi.winapi/browse_thread/thread/c54e9f7ecc8e2bb0/85f9e081334aec93?lnk=st&q=microphone volume + delphi&rnum=3&hl=zh-TW#85f9e081334aec93 function GetWaveVolume: DWord; var Woc : TWAVEOUTCAPS; Volume); Result := Volume; end; end; procedure SetWaveVolume(const AVolume: DWord); var Woc : TWAVEOUTCAPS; begin if WaveOutGetDevCaps(WAVE_MAPPER, @Woc, sizeof(Woc)) = MMSYSERR_NOERROR then if Woc.dwSupport and WAVECAPS_VOLUME = WAVECAPS_VOLUME then WaveOutSetVolume(WAVE_MAPPER, AVolume); end; procedure TForm1.Button2Click(Sender: TObject); var LeftVolume: Word; RightVolume: Word; begin LeftVolume := StrToInt(Edit1.Text); RightVolume := StrToInt(Edit2.Text); SetWaveVolume(MakeLong(LeftVolume, RightVolume)); end; procedure TForm1.Button3Click(Sender: TObject); begin Caption := IntToStr(GetWaveVolume); end; |
AsureNick
一般會員 發表:10 回覆:10 積分:4 註冊:2007-03-07 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |