为什么 Mac 网络摄像头在使用 Silverlight 4 查询时不报告任何支持的视频格式?
我正在测试一些 Silverlight 4 代码来连接到网络摄像头以捕获视频和音频。在 PC 上一切正常,但在 Mac 上,当查询网络摄像头支持的视频格式时,使用 VideoCaptureDevice.SupportedFormats 调用时不会返回任何数据。我已经尝试使用外部网络摄像头和内置 iSight 摄像头进行此操作。
当查看 Mac 上的 Silverlight 首选项时,我可以看到网络摄像头并显示视频,因此我知道它已正确连接并正常工作。
我应该提到,针对音频格式的类似查询(AudioCaptureDevice.SupportedFormats)确实有效。
有谁知道这可能是什么原因造成的?
I'm testing some Silverlight 4 code to connect to webcams to grab video and audio. Everything works fine on PC's, but on Macs it appears that when querying the webcam for the supported video formats, no data is returned when using VideoCaptureDevice.SupportedFormats call. I have tried this using both an external webcam as well as a built in iSight camera
When looking at the Silverlight preferences on the Mac, I can see the webcam and it shows the video so I know it's hooked up properly and working.
I should mention that the similar query (AudioCaptureDevice.SupportedFormats) for audio formats does work.
Doe anybody know what might cause this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,这很尴尬。 MSDN 表明 OSX 总是将其返回为空,现在开始解决这个问题......
OK, that's embarrassing. MSDN shows that OSX will always return this as empty, now off to work around that...