直播问题

发布于 2024-12-21 15:30:45 字数 223 浏览 0 评论 0原文

我正在开发一个应用程序来查看直播频道。频道托管在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

似最初 2024-12-28 15:30:45

您使用的是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文