博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c# 播放音乐
阅读量:4880 次
发布时间:2019-06-11

本文共 2216 字,大约阅读时间需要 7 分钟。

第一种是利用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>        

public void PlaySound(string FileName)        

{//要加载COM组件:Microsoft speech object Library            

if (!System.IO.File.Exists(FileName))            

{                 return;             }            

SpeechLib.SpVoiceClass pp = new SpeechLib.SpVoiceClass();              

SpeechLib.SpFileStreamClass spFs = new SpeechLib.SpFileStreamClass();              

spFs.Open(FileName, SpeechLib.SpeechStreamFileMode.SSFMOpenForRead, true);            

SpeechLib.ISpeechBaseStream Istream = spFs as SpeechLib.ISpeechBaseStream;            

pp.SpeakStream(Istream, SpeechLib.SpeechVoiceSpeakFlags.SVSFIsFilename);            

spFs.Close();         }

第三种:引用SoundPlayer

System.Media.SoundPlayer sndPlayer = new System.Media.SoundPlayer(");

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用法

} }

转载于:https://www.cnblogs.com/cmblogs/p/3488967.html

你可能感兴趣的文章
情态动词
查看>>
关于linux的一些基础知识
查看>>
架构漫谈阅读感悟一
查看>>
Android系列之网络(二)----HTTP请求头与响应头
查看>>
数据结构之表(1)顺序表的实现
查看>>
5. git 过滤,让某文件夹里无法提交新添加的文件
查看>>
使用python脚本的3D引擎Panda3d
查看>>
「成长指南」大佬是怎样炼成的
查看>>
CentOS VMware 下SSH配置方法详解
查看>>
【DNN 系列】 添加模块后不显示
查看>>
Java Spring MVC 错误 及 常见问题 总结
查看>>
移动端默认兼容各手机比例
查看>>
案例4-修改商品
查看>>
桥接模式
查看>>
20155235 2016-2017-2 《Java程序设计》第十周学习总结
查看>>
对象切片与虚函数机制
查看>>
applicationContext.xml xxx-servlet.xml
查看>>
智能 PDU IP 地址设置步骤
查看>>
public,private,protected,internal作用
查看>>
YII2.0文件缓存 如何实现跨模块读取缓存?
查看>>