将 MediaElement 文件源保存到隔离存储
对于使用外部源的 MediaElement,是否可以在下载时播放 mp3,然后在下载完成后将其保存到独立存储以供将来使用?
如果没有,实现这一目标的最佳方法是什么?
With a MediaElement using an external source -- is it possible to play an mp3 while it's downloading, and then when it's finished downloading, save it to isolated storage for future use?
If not, what's the best way to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法触及 MediaElement 正在使用的流。但是您可以深度学习,然后保存到独立存储,然后将该流加载到 mediaElement 中......
You don't get to touch the stream that MediaElement's using. But you could DL, then save to isolated storage, then load that stream into the mediaElement...