VS2010 关于.wav音频文件播放_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > VS2010 关于.wav音频文件播放

VS2010 关于.wav音频文件播放

 2017/8/28 17:08:52  尼古拉斯·毛  程序员俱乐部  我要评论(0)
  • 摘要:录音工具,推荐使用Win7操作系统自带录音机。修改录音机输出开始→所有程序→附件→右击录音机→属性,在目标栏路径有添加空格/fileoutputfile.wav。使用录音机录制相关音频XXX.wav具体代码如下1usingSystem;2usingSystem.Collections.Generic;3usingSystem.ComponentModel;4usingSystem.Data;5usingSystem.Drawing;6usingSystem.Linq;7usingSystem
  • 标签:VS2010 2010 文件

录音工具,推荐使用Win7操作系统自带录音机。

修改录音机输出开始→所有程序→附件→右击录音机→属性,在目标栏路径有添加 空格/file outputfile.wav。

使用录音机录制相关音频XXX.wav

具体代码如下

 1 using System;
 2 using System.Collections.Generic;
 3 using System.ComponentModel;
 4 using System.Data;
 5 using System.Drawing;
 6 using System.Linq;
 7 using System.Text;
 8 using System.Windows.Forms;
 9 using System.Media;
10 
11 namespace PlayAudio
12 {
13     public partial class Form1 : Form
14     {
15         public string str = System.Environment.CurrentDirectory;//系统安装路径,调试模式即为Debug
16         SoundPlayer player = new SoundPlayer();//新建SoundPlayer()
17 
18         public Form1()
19         {
20             InitializeComponent();
21         }
22 
23         private void button1_Click(object sender, EventArgs e)
24         {
25             //播放按钮
26             player.Play();
27         }
28 
29         private void Form1_Load(object sender, EventArgs e)
30         {
31             //主程序启动项
32             str = str + @"\XXX.wav";
33             player.SoundLocation = str;
34             player.Load();
35         }
36     }
37 }

 

发表评论
用户名: 匿名