开发者

How to create this desktop recorder? [closed]

开发者 https://www.devze.com 2023-02-07 04:05 出处:网络
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form. For help clari
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit开发者_如何学运维 the help center. Closed 9 years ago.

I want to create a desktop recorder that require very little HD space.

It should capture the current display into a buffer, compare it to the previous state, and save only the rectangles that differ to the previous state.

What API, function or library I have to use ?


Well if you want to save the differences from each frame to frame only you could simply use a substraction-method. Simply substract the color values at image(t+1) from image(t)... All parts that stay equal haven't changed... only the parts that are different will result in something non-zero. You can then extract the rectangles around it and save them. But of course be aware since there might be more than one part changing of course and you probably wanna save each one instead of the big rectangle that contains all changes...

You could use OpenCV for this... it has all basic functions for image substraction, rectangle fitting, cropping, ...

Hope that helps...


Consider using Windows Media Screen Capture encoder for the task. You will feed your captured frames to it, and it will do the rest and create highly efficient wmv file for you.

0

精彩评论

暂无评论...
验证码 换一张
取 消