是否有任何 C# 或 C++ 框架可以方便录制桌面应用程序的视频?
我正在研究录制桌面应用程序视频的各种方法,特别是视频游戏。
我的第一个想法是更底层的东西,比如在 DirectX 前端 - 也许挂钩一些 DirectX 方法并以这种方式记录。我希望有一个工具包或成熟的框架可以让这一切变得更容易。
我的目标是将视频捕获数据流式传输到我的服务器。
有谁知道是否有任何工具可以帮助我解决这个问题?说实话,语言对我来说真的不重要。
I'm researching the various ways of recording videos of desktop applications, specifically video games.
My first thought is something more lower level, like on the DirectX front - perhaps hook some DirectX method and record that way. I was hoping there would be a toolkit or full-blown framework for making this easier.
My goal is to stream video capture data to my server.
Does anyone know if there are any tools for helping me with this? Language really doesn't matter to me, to be honest.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者使用 VLC (VideoLan) 并将其与您的应用程序捆绑在一起。
http://wiki.videolan.org/C_Sharp
但要注意许可证限制...我不确定VLC 使用什么许可证。
Alternatively use VLC (VideoLan) and bundle this with your application.
http://wiki.videolan.org/C_Sharp
Beware license restraints though... I'm not sure what license VLC uses.
也许不是最简单的,但我记得这个问题:Record Video of Screen using .NET 。
基本上,您不需要任何第三方应用程序/库,因为 .NET BCL 可以处理屏幕捕获,但您需要一些东西将它们拼接在一起
您可以使用 Splicer(例如 http://splicer.codeplex.com)进行屏幕截图、合成图像并编译成视频/
例如,
只要您需要,就可以循环执行此方法。
然后使用 Splicer 进行合并:
Maybe not the easiest, but I remember this question: Record Video of Screen using .NET technologies
Basically you don't need any third party apps/libs as the .NET BCL can handle screen capture, but you will need something to stitch them together.
You take screen captures, composite your images and compile into a video using a Splicer such as http://splicer.codeplex.com/
e.g.
Loop through this method for as long as you need.
Then combine using Splicer: