直播问题
我正在开发一个应用程序来查看直播频道。频道托管在 Windows Media Services 9
上。我正在使用 MediaElement 来播放流,它第一次播放流,但在第二次尝试时不会播放,除非我重新启动应用程序。
WP7 上的 Internet Explorer 也有同样的问题,它第一次播放流,但第二次尝试时不播放。
这是一个错误吗?或者这个问题有什么解决办法吗?
I am developing an app to view live channels. Channels are hosted on Windows Media Services 9
. I am using MediaElement
for playing the stream and it is playing the stream first time but doesnt play on second attempt unless i relaunch the app.
Same problem with internet explorer on WP7 it plays the stream first time but not on second attempt.
Is it a bug? or is there any solution of this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用的是 IIS 平滑流吗?如果没有,为什么不呢?考虑到您正在开发需要扩展到未知网络条件的移动设备,自适应流式传输将比渐进式下载播放更好。
如果您在服务器端使用 IIS Smooth Streaming,则不应使用 << MediaElement Source="http://foo" />而是使用 < ssme:SmoothStreamingMediaElement StreamSource="http://foo/bar.ism/manifest" />控制。
有很多关于 设置IIS 平滑流端点 和 从 WP7 使用它。您还应该考虑使用 < smf:SmfPlayer //a> 控件,因为它为您提供了功能齐全的 WP7 视频播放器,而不仅仅是像 mediaelements 那样的播放矩形。
Are you using IIS Smooth Streaming? If not, why not? Considering you're developing for a mobile device that would need to scale to unknown network conditions adaptive streaming would be better than progressive download playback.
If you are using IIS Smooth Streaming on the server side, you shouldn't use < MediaElement Source="http://foo" /> but rather use the < ssme:SmoothStreamingMediaElement StreamSource="http://foo/bar.ism/manifest" /> control.
There's a lot of documentation out there on setting up an IIS smooth streaming endpoint and consuming it from WP7. You should also consider using the < smf:SmfPlayer /> control as it gives you a fully-featured WP7 video player and not just a playback rectangle like the mediaelements do.