Displaying live video from a raw uncompressed byte source in C#: WPF vs. Win forms

孤人 提交于 2019-12-03 20:21:26

My VideoRendererElement, though very efficient, does use some hackery to make it work. You may also want to experiment with the WriteableBitmap in .NET 3.5 SP1.

Also the InteropBitmap is very fast too. Much more efficient than the WB as it's not double buffered. Though it can be subject to video tearing.

Some further Google-searching yielded this:

http://www.codeplex.com/VideoRendererElement

which I'm looking into now, but may be the right approach here. Of course further thoughts/suggestions are still very much welcome.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!