如何使用 MediaElement 播放本地媒體檔案(使用 C#/VB/C++ 和 XAML 的 Windows 市集應用)

來源:互聯網
上載者:User
文章目錄
  • 說明
  • 完整樣本
  • 相關主題
重要的 API
  • MediaElement
  • FileOpenPicker
  • OpenAsync
說明步驟 1:

在使用 C++、C# 或 Visual Basic 的 Windows 市集應用中,可通過使用 MediaElement 類實現音頻和視頻播放。Source 屬性指定要播放的媒體檔案。它可以是網路上的檔案,應用程式附帶的檔案或者本地系統上的檔案。對於網路上的檔案或嵌入應用程式的檔案,只需將 Source 屬性設定為檔案路徑即可。 若要開啟本地系統上的檔案,可以使用 FileOpenPicker

本主題介紹如何使用 FileOpenPicker 類開啟並播放本地媒體檔案。

步驟 2: 設定功能

若要啟用對本地系統上媒體庫的訪問,應用必須在應用程式資訊清單 中包括Music Library Access功能。

  1. 在 Microsoft Visual Studio Express 2012 for Windows 8 中,通過雙擊方案總管中的 package.appxmanifest 項,開啟應用程式資訊清單設計器。
  2. 單擊“功能”。
  3. 選中“視頻庫訪問”或“音樂庫訪問”框。
步驟 3: 建立 MediaElement

建立 MediaElement 對象並為它提供 Name。為對象提供名稱後,便可以輕鬆地在代碼檔案中對它進行訪問。

<MediaElement Name="mediaControl" Height="400" />

 

步驟 4: 使用 OpenFilePicker 擷取檔案

使用 FileOpenPicker 類從使用者的視頻庫中選擇媒體檔案。在 FileOpenPicker 上設定 SuggestedStartLocationFileTypeFilter 屬性。 調用 PickSingleFileAsync 可開機檔案選取器並擷取檔案。

 1 var openPicker = new Windows.Storage.Pickers.FileOpenPicker(); 2 openPicker.SuggestedStartLocation = 3 Windows.Storage.Pickers.PickerLocationId.VideosLibrary; 4 openPicker.FileTypeFilter.Add(".wmv"); 5 openPicker.FileTypeFilter.Add(".mp4"); 6 var file = await openPicker.PickSingleFileAsync();

 

步驟 5: 設定源並播放媒體

若要將 MediaElementSource 設定為從 FileOpenPicker 返回的 StorageFile,我們需要開啟流。 StorageFile 上的 OpenAsync 方法返回可傳入 MediaElement.SetSource 的流。然後調用 MediaElement 上的 Play 以啟動媒體。

1 var stream = await file.OpenAsyn(Windows.Storage.FileAccessMode.Read);2 // mediaControl is a MediaElement defined in XAML3 mediaControl.SetSource(stream, file.ContentType);4 mediaControl.Play();

 

完整樣本

以下樣本顯示了用於從使用者的視頻庫中選擇檔案並將其設定到 MediaElementSource 的完整代碼清單。

 1 async private void SetLocalMedia() 2 { 3 var openPicker = new Windows.Storage.Pickers.FileOpenPicker(); 4 openPicker.SuggestedStartLocation = 5 Windows.Storage.Pickers.PickerLocationId.VideosLibrary; 6 openPicker.FileTypeFilter.Add(".wmv"); 7 openPicker.FileTypeFilter.Add(".mp4"); 8 var file = await openPicker.PickSingleFileAsync(); 9 var stream = await file.OpenAsync(Windows.Storage.FileAccessMode.Read);10 // mediaControl is a MediaElement defined in XAML11 mediaControl.SetSource(stream, file.ContentType);12 mediaControl.Play();13 }
相關主題
建立採用 C#、C++ 或 VB 的 Windows 市集應用的路線圖
XAML 媒體播放樣本
Windows.Media
MediaElement

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.