RTSP 和 MediaElement
我在尝试使用 MediaElement 使用 RTSP 源时遇到问题:
我收到异常:
Exception from HRESULT: 0xC00D11BB
这表明:
Windows Media Player 无法播放该文件,因为不支持指定的协议。如果您在“打开 URL”对话框中键入了 URL,请尝试使用不同的传输协议(例如“http:”或“rtsp:”)。
什么给?
I'm having trouble trying to consume an RTSP feed with MediaElement:
I'm getting an exception:
Exception from HRESULT: 0xC00D11BB
Which indicates that:
Windows Media Player cannot play the file because the specified protocol is not supported. If you typed a URL in the Open URL dialog box, try using a different transport protocol (for example, "http:" or "rtsp:").
What gives?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
错误标识符是
NS_E_WMP_INVALID_PROTOCOL
,发生这种情况是因为这种类型的 RTSP 源很可能不受支持/不兼容,请参阅上一个问题中支持的格式的链接 MediaElement 和 RTSPThe error identifier is
NS_E_WMP_INVALID_PROTOCOL
and it happens because most likely this type of RTSP feed is not supported/compatible, see link on supported formats in your previous question MediaElement and RTSP