如何在Windows Phone中播放Base64音频文件?

时间:2014-06-05 05:13:45

标签: c# windows-phone-8

如何在Windows Phone中播放base64音频,哪种方法有用? 我是这个应用程序的新手,请原谅我,不要把它评为低。 看我的代码:

string mediafile = "asdgqqwerwe+azxhtoup";
byte[] PlayByte = Convert.FromBase64String(mediafile);  
MemoryStream stream = new MemoryStream(PlayByte,0,PlayByte.Length);
MediaElement1.SetSource(stream);

我收到这样的错误:

  

发生了'System.NotSupportedException'类型的异常   System.Windows.ni.dll但未在用户代码中处理

     

其他信息:Stream必须是类型   IsolatedStorageFileStream

0 个答案:

没有答案