Jump to content

Recommended Posts

Posted

Hi all,

 

New school being built shortly and I'm looking for some software to capture hourly (or less frequently) pics of the site to eventually make a time lapse video. We've got a bunch of unused Rimax ip cam's which you can access a snapshot jpg via http directly, but after looking at 10+ different programs none of them do it that nicely or without stamping their logo on it.

would prefer not to cough up for it, as I'm sure someone somewhere has written a decent app to pull a capture every hour off an ip based cam, just cant find one!

 

any suggestions?

Posted

Assuming the jpeg is exposed (or you can push username/password via http) mget or wget in a scheduled task / cron job?

 

say, every hour..

wget http://camera1/path/to/jpeg.jpg > \\server\share\folder\$date-$time-Camera1.jpg

wget http://camera2/path/to/jpeg.jpg > \\server\share\folder\$date-$time-Camera2.jpg

wget http://camera3/path/to/jpeg.jpg > \\server\share\folder\$date-$time-Camera3.jpg

....etc

?

 

Sling it in a scheduled task somewhere and forget about it (assumes you have monitoring on \\server\share that'll warn you before it fills the disk).

 

Wget - Wikipedia, the free encyclopedia

  • Thanks 1
  • 1 month later...
Posted
Assuming the jpeg is exposed (or you can push username/password via http) mget or wget in a scheduled task / cron job?

 

say, every hour..

wget http://camera1/path/to/jpeg.jpg > \\server\share\folder\$date-$time-Camera1.jpg

wget http://camera2/path/to/jpeg.jpg > \\server\share\folder\$date-$time-Camera2.jpg

wget http://camera3/path/to/jpeg.jpg > \\server\share\folder\$date-$time-Camera3.jpg

....etc

?

 

Sling it in a scheduled task somewhere and forget about it (assumes you have monitoring on \\server\share that'll warn you before it fills the disk).

 

Wget - Wikipedia, the free encyclopedia

 

Awesome!! Done it with wget as suggested! Thanks!

 

Took a bit of fiddling with $date and $time, as it didn't like those two straight off..

 

 

Created a batch file with the following in

 

 

set tag=%date:~-4,4%%date:~7,2%%date:~4,2%-%time:~0,2%%time:~3,2%%time:~6,2%

 

wget http://192.168.1.60/snapshot.jpg?account=admin?password=password -O 1.jpg

 

ren 1.jpg %tag%.jpg

 

 

This grabs the photo, and renames it to have a timestamp in the filename, in the correct order for sorting files. You might be able to skip the last step and use %tag%.jpg in the wget...haven't tried it.

 

Ta!!!

 

Nick

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



  • 12 When would you like EduGeek EDIT 2025 to be held?

    1. 1. Select a time period you can attend


      • I can make it in June\July
      • I can make it in August\Sept
      • Other time period. Please comment in the thread what works for you
      • Either time

×
×
  • Create New...