Windows Phone 8中的Base64音频问题

时间:2014-08-06 04:28:22

标签: c# windows-phone-8 base64

我正在创建Windows Phone 8应用程序,并从Web服务响应获取Base64String Audio,如何转换它并使用MediaElement或?我试过但没有得到结果。看我的代码。

String file = "askjakfgksdguuqeiqheiqe/34q/asas2j/asasaadadada";
byte[] playbyte = Convert.FromBase64String(file);
MemoryStrem stream = new MemoryStream(playbyte,0,playbyte.Length);
MediaElement.SetSource(stream);
MediaElement.Play();

我也尝试过使用IsolatedStorage,但没有成功。

怎么做?

1 个答案:

答案 0 :(得分:1)

WP8不支持AIFF,另请参阅Supported media codecs for Windows Phone 8作为参考。