C#播放聲音的四種方法
介紹之前首先推薦一個程式設計師專用搜索引擎-http://www.openso.net
第一種是利用DirectX
1.安裝了DirectX SDK(有9個DLL檔案)。這裡我們只用到MicroSoft.DirectX.dll 和 Microsoft.Directx.DirectSound.dll
2.引入DirectX 的DLL檔案的名字空間:
using Microsoft.DirectX;
using Microsoft.DirectX.DirectSound;
3.建立裝置
Device dv=new Device();
4.設定CooperativeLevel。因為windows是多工的系統,裝置不是獨佔的
SecondaryBuffer buf=new SecondaryBuffer(@"snd.wav",dv);
5.開闢緩衝區SecondaryBuffer buf=new SecondaryBuffer(@"snd.wav",dv);
6.接下來就可以播放啦。第一個引數表示優先級別,0是最低的。第2個引數是播放方式,這裡是迴圈播放。
buf.Play(0,BufferPlayFlags.Looping);
第二種是利用Microsoft speech object Library
///<summary
///播放聲音檔案
///</summary>
///<param name="FileName">檔案全名</param>
publicvoidPlaySound(stringFileName)
{//要載入COM元件:Microsoft speech object Library
if(!System.IO.File.Exists(FileName))
{
return;
}
SpeechLib.SpVoiceClasspp =newSpeechLib.SpVoiceClass();
SpeechLib.SpFileStreamClassspFs =newSpeechLib.SpFileStreamClass();
spFs.Open(FileName, SpeechLib.SpeechStreamFileMode.SSFMOpenForRead,true);
SpeechLib.ISpeechBaseStreamIstream = spFsasSpeechLib.ISpeechBaseStream;
pp.SpeakStream(Istream, SpeechLib.SpeechVoiceSpeakFlags.SVSFIsFilename);
spFs.Close();
}
第三種:引用SoundPlayer
System.Media.SoundPlayer sndPlayer = new System.Media.SoundPlayer(Application.StartupPath+@"/pm3.wav");
sndPlayer.PlayLooping();
第4種:利用Windows Media Player
新建一個C#的Windows Form工程(Windows應用程式),並且定義兩個選單按鈕(menuItem1,menuItem2)。
選擇選單中的“工具”中的“自定義工具箱(新增/移除工具箱項)”,在自定義工具箱的視窗中,點選展開“COM 元件”項,選中“Window Media Player”選項。確定後在“工具箱”中便會出現“Windows Media Player”這一項,然後再將其拖至Form上,調整大小,系統在“引用”中自動加入了對此dll的引用,AxMediaPlayer就是我們使用的Namespace與class。
在屬性欄中設定好此控制元件的一些屬性,為了方便,這裡我把AutoStart設定成為true(其實預設是true),只要FileName被設定(打開了檔案),則檔案將會自動播放。完整程式碼如下:
private void menuItem1_Click(object sender, System.EventArgs e)
{
OpenFileDialog ofDialog = new OpenFileDialog();
ofDialog.AddExtension = true;
ofDialog.CheckFileExists = true;
ofDialog.CheckPathExists = true;
//the next sentence must be in single line
ofDialog.Filter = "VCD檔案(*.dat)|*.dat|Audio檔案(*.avi)|*.avi
|WAV檔案(*.wav)|*.wav|MP3檔案(*.mp3)|*.mp3|所有檔案 (*.*)|*.*";
ofDialog.DefaultExt = "*.mp3";
if(ofDialog.ShowDialog() == DialogResult.OK)
{
// 2003一下版本 方法 this.axMediaPlayer1.FileName = ofDialog.FileName;
this.axMediaPlayer1.URL= ofDialog.FileName;//2005用法
}
}
這裡使用的是微軟的播放器,大家也可以試試Winamp的控制元件,如果你只需要播放聲音而不需要顯示,你只要把AxMediaPlayer的Visible屬性設定為false就可以了。
開源框架NAudio:
http://www.codeplex.com/naudio
不錯.