錄音工具,推薦使用Win7操作系統自帶錄音機。 修改錄音機輸出開始→所有程式→附件→右擊錄音機→屬性,在目標欄路徑有添加 空格/file outputfile.wav。 使用錄音機錄製相關音頻XXX.wav 具體代碼如下 ...
錄音工具,推薦使用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 }