Page 1 of 1

Software for recording Foscam video

Posted: Sat Jun 25, 2011 2:24 pm
by bing
Have two IP cameras from Foscam. Used the standard mail and FTP functions. Now, however, wanted to record moving images. In the past, I used gotcha, perfect program, but does not support IP camera `s.
I try Webcam xp but it takes 100% CPU time.

What program do you use?

Re: ip-camera software

Posted: Sat Jun 25, 2011 8:54 pm
by Verkenner
I use the Synology surveillance software.
It's very nice software delivered with the DS211J-NAS.
With motion recording. Works great.

And watch thisĀ±
http://www.gadgetvictims.com/2009/08/th ... am-ip.html

Re: ip-camera software

Posted: Sat Jun 25, 2011 10:30 pm
by Bastiaan

Re: ip-camera software

Posted: Sun Jun 26, 2011 8:41 am
by phoenixb
Or http://www.pysoft.com/ActiveWebCamMainpage.htm
good software for pan/tilt/zoom op cams.

Re: ip-camera software

Posted: Tue Sep 13, 2011 1:53 pm
by Henk_J
I use VLC player with homeseer to record video streams from a few Foscam camera's at the moment movement is detected. It's free, easy to use and you can record from several cams at the same time. If somebody is interested in the script I can post it here.

Re: ip-camera software

Posted: Wed Sep 14, 2011 9:03 am
by bing
Henk_J wrote:I use VLC player with homeseer to record video streams from a few Foscam camera's at the moment movement is detected. It's free, easy to use and you can record from several cams at the same time. If somebody is interested in the script I can post it here.
I will try VLC player, the script is for homeseer?

Re: ip-camera software

Posted: Wed Sep 14, 2011 11:00 am
by Henk_J
I just use a windows bat file which is triggered within HS after movement is detected. I will post it somewhere in the coming days for you.

Re: Software for recording Foscam video

Posted: Fri Sep 16, 2011 4:30 pm
by Henk_J
This is the .bat file executed after movement, I use separate bat files for separate camera's.

Install vlc player first. You can change the recording time by modifying the time parameter. Last command line renames the video output file.


cd C:\Program Files\VideoLAN\VLC
vlc "http://ip-addr:portnr/videostream.asf?user=username&pwd=password" --sout="#duplicate{dst=std{access=file,mux=asf,dst='C:\camera\voordeur.asf'},dst=nodisplay}" --run-time=15 --quiet vlc://quit
cd c:\camera
ren voordeur.asf "Voordeur_%date:~0,2%-%date:~3,2%-%date:~6,4%_%time:~0,2%_%time:~3,2%_%time:~6,5%.asf"

Re: Software for recording Foscam video

Posted: Mon Sep 19, 2011 7:36 am
by bing
Henk_J wrote:This is the .bat file executed after movement, I use separate bat files for separate camera's.

Install vlc player first. You can change the recording time by modifying the time parameter. Last command line renames the video output file.


cd C:\Program Files\VideoLAN\VLC
vlc "http://ip-addr:portnr/videostream.asf?user=username&pwd=password" --sout="#duplicate{dst=std{access=file,mux=asf,dst='C:\camera\voordeur.asf'},dst=nodisplay}" --run-time=15 --quiet vlc://quit
cd c:\camera
ren voordeur.asf "Voordeur_%date:~0,2%-%date:~3,2%-%date:~6,4%_%time:~0,2%_%time:~3,2%_%time:~6,5%.asf"
Thanks!!