Page 1 of 1

software for create movie from screen capture

Posted: Mon Mar 06, 2017 1:20 pm
by marc_256
hallo,

some time now ...

i like to post a movie of some program (CAD) stuff here,
but i need some software for create movie from screen capture (.avi) or better ??

can someone give me some advice for this ?

thanks,

marc,

Re: software for create movie from screen capture

Posted: Mon Mar 06, 2017 1:47 pm
by falsam
or better ??
ScreenToGif (Free)

Image

:arrow: http://www.screentogif.com/

Re: software for create movie from screen capture

Posted: Mon Mar 06, 2017 2:05 pm
by IdeasVacuum
Hi Marc

Blueberry Software's Flashback Express is a freeware desktop app. I have used their apps for many years, they are very good.
FlashbackExpress

Re: software for create movie from screen capture

Posted: Tue Mar 07, 2017 1:21 am
by tj1010
The best one I ever used generated a interactive SWF. It was used on a lot of tutorials at tuts4you.

I'd like to make one with a small memory and cpu footprint that generated VP9..

Re: software for create movie from screen capture

Posted: Tue Mar 07, 2017 2:26 am
by Lunasole
ffmpeg. That stuff can encode anything to anything and it does it faster than ... anything. About 90% of all video encoding software [even commercial] are just wrappers over it.

For your case you can capture your screen images to a some folder, then use ffmpeg to stitch them into movie [or into animated gif, I've been playing with that recently].
Just one problem -- it has really bad and complicated command-line UI ^^ That UI just says you "hello from the linux world, get stuck forever in pre-MS DOS age". But well that's typical for opensource programs (as well as "documentation" in a form of 300kb txt file, lol), not a big problem if really needed.

Here are prepared builds for windows
https://ffmpeg.zeranoe.com/

// It is also possible to use it's source/lib/dll files with your program, but that's even more painful and I've dropped such attempts quickly

Re: software for create movie from screen capture

Posted: Tue Mar 07, 2017 5:59 am
by heartbone
marc_256 wrote:hallo,

some time now ...

i like to post a movie of some program (CAD) stuff here,
but i need some software for create movie from screen capture (.avi) or better ??

can someone give me some advice for this ?

thanks,

marc,
http://www.pcmag.com/article2/0,2817,1096851,00.asp
http://camstudio.soft32.com/old-version/370193/2.0
Has worked well for me.

Re: software for create movie from screen capture

Posted: Tue Mar 07, 2017 7:32 am
by marc_256
hi,

thanks you all for the interesting info.
need some time now to test them,
will see ...

thanks,
greets,
marc

Re: software for create movie from screen capture

Posted: Sun Mar 12, 2017 9:08 pm
by bembulak
IIRC vlc can do that too.
CamStudio is also good!

Re: software for create movie from screen capture

Posted: Mon Mar 13, 2017 12:48 am
by tj1010
It'd probably take less than 20 lines of PB to generate the frames in a selected folder then pass it to FFMPEG using RunProgram. It'd probably have a smaller memory and cpu footprint than other solutions too.