Page 1 of 1
record from VNC, like IP camera
Posted: Mon Jan 24, 2011 7:14 am
by erpo41
I would like zoneminder to record the screen of a PC running a VNC server. Is this currently a feature of zoneminder? If not, is there a guide to adding new types of inputs to the program? I'm willing to do some programming...
Re: record from VNC, like IP camera
Posted: Tue Jul 12, 2011 7:41 am
by marcodefreitas
I like the idea.
I have some customers who will like it too.
Re: record from VNC, like IP camera
Posted: Wed Jul 13, 2011 5:53 am
by Flasheart
Find a way to either serve a jpg via http from the vnc (or local screenshot), zm can then request that and save.
Another way is a screenshot program saving to a shared disk every second or so - and zm fetching it from a local file (mounted shared fs) - but this is less good since inevitably it will load the file at the same time it's being written, resulting in a partial picture.
But yeah - it's doable by zm. All that needs is a way to get a jpg of anything. If you can provide that from your source, zm will work.
Re: record from VNC, like IP camera
Posted: Sun Jul 17, 2011 7:27 pm
by vraa
Flasheart wrote:Find a way to either serve a jpg via http from the vnc (or local screenshot), zm can then request that and save.
Another way is a screenshot program saving to a shared disk every second or so - and zm fetching it from a local file (mounted shared fs) - but this is less good since inevitably it will load the file at the same time it's being written, resulting in a partial picture.
But yeah - it's doable by zm. All that needs is a way to get a jpg of anything. If you can provide that from your source, zm will work.
I am working on writing a c# .net app to take jpg screenshots of a windows POS screen every second (or something) so ZM can pick it up
I will let you guys know my progress, I really am not a coder, this is my first time using VS2010.net
but I think it is relatively easy, hard part will be tuning it so ZM can get the jpgs (not sure if I want to setup http listener through the .net app, or do the shared fs approach)
Re: record from VNC, like IP camera
Posted: Mon Jul 18, 2011 1:40 am
by marcodefreitas
I think it can be usefull:
vncsnapshot on sourceforge
What you think?