0
我下載一個聲音,並與.mp3
擴展這樣的保存:的MediaElement不播放聲音
var response = await client.GetStreamAsync(fileUrl);
using (IsolatedStorageFileStream fileStream = new IsolatedStorageFileStream(filePath, FileMode.Create, isolatedStorage))
{
using (BinaryWriter binaryWriter = new BinaryWriter(fileStream))
{
await response.CopyToAsync(fileStream);
}
}
現在,當我看向IsolatedStorage
由獨立存儲瀏覽器,我看到那裏的文件,我可以玩它也。
我要訪問並播放:
IsolatedStorageFile isolatedStorage = IsolatedStorageFile.GetUserStoreForApplication();
IsolatedStorageFileStream fileStream = isolatedStorage.OpenFile(filePath, FileMode.Open, FileAccess.Read);
musicMediaElement.SetSource(fileStream);
musicMediaElement.Play();
}
我什麼也沒聽到。我不知道我做錯了什麼。
是否報告了任何錯誤或異常?確保您訂閱了「MediaOpened」和「MediaFailed」事件以確認它開始播放,並且您聽到任何錯誤消息。 –