Click here to Skip to main content
15,911,139 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: hide Shell_NotifyIcon from other program Pin
David Crow10-Feb-04 9:48
David Crow10-Feb-04 9:48 
GeneralRe: hide Shell_NotifyIcon from other program Pin
_hunter10-Feb-04 9:52
_hunter10-Feb-04 9:52 
GeneralCodePage! Pin
George Clarence10-Feb-04 3:33
George Clarence10-Feb-04 3:33 
GeneralRe: CodePage! Pin
David Crow10-Feb-04 4:30
David Crow10-Feb-04 4:30 
GeneralRe: CodePage! Pin
George Clarence10-Feb-04 21:12
George Clarence10-Feb-04 21:12 
GeneralRe: CodePage! Pin
David Crow11-Feb-04 2:43
David Crow11-Feb-04 2:43 
GeneralRe: CodePage! Pin
George Clarence10-Feb-04 21:23
George Clarence10-Feb-04 21:23 
GeneralRe: CodePage! Pin
David Crow11-Feb-04 2:40
David Crow11-Feb-04 2:40 
GeneralOwner drawn edit control Pin
thorek10-Feb-04 2:17
thorek10-Feb-04 2:17 
GeneralForcing redrawing of property pages... Pin
Bob The Builder (BtB)10-Feb-04 2:12
Bob The Builder (BtB)10-Feb-04 2:12 
Generalproblem with ShellExecute and environment variables Pin
feline_dracoform10-Feb-04 0:20
feline_dracoform10-Feb-04 0:20 
GeneralRe: problem with ShellExecute and environment variables Pin
Luuk Weltevreden10-Feb-04 0:39
Luuk Weltevreden10-Feb-04 0:39 
GeneralRe: problem with ShellExecute and environment variables Pin
feline_dracoform10-Feb-04 0:50
feline_dracoform10-Feb-04 0:50 
GeneralRe: problem with ShellExecute and environment variables Pin
Luuk Weltevreden10-Feb-04 1:23
Luuk Weltevreden10-Feb-04 1:23 
GeneralRe: problem with ShellExecute and environment variables Pin
feline_dracoform11-Feb-04 0:51
feline_dracoform11-Feb-04 0:51 
GeneralRe: problem with ShellExecute and environment variables Pin
Luuk Weltevreden11-Feb-04 6:14
Luuk Weltevreden11-Feb-04 6:14 
QuestionWindows listbox has a resource error? Pin
Luuk Weltevreden10-Feb-04 0:11
Luuk Weltevreden10-Feb-04 0:11 
AnswerRe: Windows listbox has a resource error? Pin
Anonymous10-Feb-04 8:13
Anonymous10-Feb-04 8:13 
GeneralRe: Windows listbox has a resource error? Pin
Luuk Weltevreden10-Feb-04 8:35
Luuk Weltevreden10-Feb-04 8:35 
GeneralMFC drawing confusion Pin
Madhur Baheti9-Feb-04 23:40
Madhur Baheti9-Feb-04 23:40 
GeneralRe: MFC drawing confusion Pin
CodeBrain10-Feb-04 0:44
CodeBrain10-Feb-04 0:44 
GeneralRe: MFC drawing confusion Pin
Mike Dimmick10-Feb-04 1:01
Mike Dimmick10-Feb-04 1:01 
GeneralRegarding Screen changes Pin
santosh k9-Feb-04 23:17
santosh k9-Feb-04 23:17 
GeneralRe: Regarding Screen changes Pin
Luuk Weltevreden10-Feb-04 0:34
Luuk Weltevreden10-Feb-04 0:34 
GeneralRe: Regarding Screen changes Pin
Luuk Weltevreden10-Feb-04 3:52
Luuk Weltevreden10-Feb-04 3:52 
The best thing you can do in this case I guess is to capture the screen at a static interval. You can do three things (which I can think of atleast Smile | :) ):

1) Just capture the screen at a static interval and write it to the disk as bitmap
2) Capture the screen at a static interval and write it to the disk as a compressed image
3) Capture the screen and compare it to the last to see if it changed and write it to the disk if it didn't (this means that you'll also have to keep a log on how long the same image should be shown)

Depending on the desired framerate and quality of the final movie (and ofcourse speed of the machine) I can't do nothing but suggest you to find the best and fastest way for yourself. They all have disadvantages, the first two being a high I/O and the second a lot of CPU required. The third, well I don't know about performance in the third. It seems like it could be pretty fast compared to the other two, but it's just a hunch Smile | :)

I think though that if you want the best performance this should be done in assembly, especially with method 2 and 3.

And I was just thinking. Suppose you have a resolution of 1024x768, 16 bits and you wish to have a framerate of 24. This means that with method 1 you'll have to write about 40MB/s to the harddisk. It's going to have a very hard time doing that and the harddisk will need quite some space too Smile | :) If I were you I'd try my last suggestion, it sure seems like the most fun suggestion as well Smile | :)

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.