WPF中播放聲音媒體檔案
這段時間我們小組要給部門的Annual Meeting準備一個WPF的抽獎程式,為了增加程式的有趣性,我們在程式中需要播放背景音樂等。由於對之前從未使用過WPF,所以對其中的聲音等媒體檔案播放不是很清楚,對一些簡單的問題也花了相對較長的時間去解決,現在將其總結在下麵,以供大家參考。
1,使用SoundPlayer類
SoundPlayer類位於System.Media名稱空間下,它只能播放.wav格式的聲音檔案。其使用方法簡單如下:
using(SoundPlayer player = new SoundPlayer()) { string location=System.Environment.CurrentDirectory+"//Sounds//explosion.wav"; player.SoundLocation=location; player.Play(); }
上面的程式碼段即是播放主程式資料夾內下的Sounds資料夾下的explosion.wav聲音檔案。如果你的聲音檔案比較小,可以直接作為資源嵌入到應用程式中,這裡的Location屬性使用相對路徑即可。
除了上面提到的檔案格式限制外,這個類還有個缺陷,就是你只能同時播放一個聲音檔案,即便你例項化幾個不同的類,在我的程式中最初考慮一個背景音樂檔案一直迴圈播放,可是當我把游標放置於另外一個我自己定製的UserControl上,會播放一個聲音,而之前的背景音樂就會消失,於是我不得不用其它的方法。
2,使用MediaPlayer類
MediaPlayer類位於System.Windows.Media
如下示例:
MediaPlayer player = new MediaPlayer(); player.Open(new Uri(@"sampleMedia/xbox.wmv", UriKind.Relative)); VideoDrawing aVideoDrawing = new VideoDrawing(); aVideoDrawing.Rect = new Rect(0, 0, 100, 100); aVideoDrawing.Player = player; player.Play();
3,在XAML中使用MediaPlayer元素
MediaPlayer元素可以方便的在XAML中直接使用MediaPlayer,如下示例:
<MediaElement Name="MyMediaElement">
<MediaElement.Triggers>
<EventTrigger RoutedEvent="MediaElement.Loaded">
<EventTrigger.Actions>
<BeginStoryboard>
<Storyboard>
<MediaTimeline x:Name="mediatiemline" Source=<span style="color: #a31515;">"pack://siteoforigin:,,,/Sounds/test.mp3"</span> Storyboard.TargetName="MyMediaElement"
RepeatBehavior="Forever" />
</Storyboard>
</BeginStoryboard>
</EventTrigger.Actions>
</EventTrigger>
</MediaElement.Triggers>
</MediaElement>
以上示例是在載入時MediaElement迴圈播放音樂檔案。
請注意Source="pack://siteoforigin:,,,/Sounds/test.mp3" 這裡的路徑表示方法,亦可以直接在Code-behind中直接設定:
我們可以發現,通過MediaPlayer可以解決檔案格式限制問題,還可以解決不能同時播放幾個聲音的問題。
this.mediatiemline.Source=new Uri(<span style="background-color: #ffff00;">Environment.CurrentDirectory </span>+ <a><span style="color: #4c7d08;">//Sounds//test.mp3</span></a>);
ps:<span style="background-color: #ffff00;"><span style="color: #ff0000;">Environment.CurrentDirectory:<span style="background-color: #ffffff;">
獲取或設定當前工作目錄的完全限定路徑。這個就解決了相對路徑的問題。</span></span></span>
4,使用MediaPlayer(包括MediaElement)的注意事項
我們在測試的時候發現,由於電腦上Windows Media Player的版本比較低,導致在播放一些音樂檔案的時候出問題,沒有聲音,我們花費了很長時間解決程式碼的問題,最終發現問題是在Windows Media Player版本上,所以如果大家遇到類似問題請記得更新你的Windows Media Player為較高版本,XP系統可以在這裡下載11.0版本:
http://www.microsoft.com/downloads/details.aspx?familyid=1D224714-E238-4E45-8668-5166114010CA&displaylang=en