录音工具,推荐使用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 PlayAudio12 {13 public partial class Form1 : Form14 {15 public string str = System.Environment.CurrentDirectory;//系统安装路径,调试模式即为Debug16 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 }