Sound

基礎篇

C# 簡介

開發環境

變數與運算

流程控制

陣列

函數

物件

例外處理

函式庫篇

檔案處理

資料結構

正規表達式

Thread

應用篇

視窗程式

媒體影音

網路程式

遊戲程式

手機程式

資料庫

雲端運算

特殊功能

委派

擴展方法

序列化

LinQ

WPF

網路資源

教學影片

投影片

教學文章

軟體下載

考題解答

101習題

播放聲音

範例一:

  using System.Media
  SoundPlayer simpleSound = new SoundPlayer(@"c:\Windows\Media\chimes.wav");
  simpleSound.Play();

範例二:SoundPlayer Class

            System.Reflection.Assembly a = System.Reflection.Assembly.GetExecutingAssembly();
            System.IO.Stream s = a.GetManifestResourceStream("<AssemblyName>.chimes.wav");
            SoundPlayer player = new SoundPlayer(s);
            player.Play();

顯示聲波

  1. Sound visualizer in C#

格式轉換

  1. http://www.codeproject.com/Articles/15588/Sound-recording-and-encoding-in-MP3-format

參考文獻

  1. How to: Play a Sound from a Windows Form
  2. SoundPlayer Class
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License