Skip to content

sheda/ShedaMotionOrbitManager

Repository files navigation

Sheda Motion Orbit Manager

ShedaMotionOrbitManager is a tool used to encapsulate using of a Logitech Orbit USB Webcam for:

  • Home security camera streaming - start/stop the live streaming, Through a WebPage
  • Home security camera motion detection - start/stop the watch, report through email with picture and video
  • Moving the USB Orbit Camera - freely(left-right/up-down) or to 7 determined positions for quick access

Utilization can be done through script comand line or by webpage access.

Third party tools

ShedaMotionOrbitManager is writtent in python 2.7 and rely on several third party tools:

  • Django framework for webserver
  • Motion for camera live streaming and motion detection
  • uvcdynctrl for Logitech Orbit Movement control
  • nohup for background running

Version

1.2

License

Gnu GPLv3

Installation

1- You need apt or any package manager to install required third party, following exemple of installatio non debian/ubuntu

$ sudo apt-get install coreutils
$ sudo apt-get install uvcdynctrl
$ sudo apt-get install motion
$ sudo apt-get install django

2- Verify thrid every thing well installed:

uvcdynctrl:

$ uvcdynctrl -s "Pan, Reset" -- 1
$ uvcdynctrl -s "Tilt, Reset" -- 1

$ uvcdynctrl -s "Pan, Relative" -- -500
$ uvcdynctrl -s "Pan, Relative" -- +500

$ uvcdynctrl -s "Tilt, Relative" -- -500
$ uvcdynctrl -s "Tilt, Relative" -- +500

motion:

$ motion

3- Install package

$ python setup.py install

4- Verify that configs files were well installed, else install those:

$ sudo cp configs/motion.conf /etc/motion/motion.conf
$ sudo cp configs/sheda_motion_orbit_manager.conf /etc/sheda_motion_orbit_manager.conf

5- Give notification method to motion when movement is detected:

They are two triggers at the end of my motion config file example /etc/motion/motion.conf:

# on_picture_save <change here your command to notify> %f %s %v %n
# on_movie_end    <change here your commcmd_to_notify> %f %s %v %n

Those trigger will launch associated command when trigerred, and add arguments to this command like %f (Which is the picture/movie absolute path of the detection). You can for example remplace those by mailling command.

on_picture_save (echo -e 'Movement detected here is the picture'; uuencode %f %f) | mail -s [ShedaMotionOrbitManager]_MOVEMENT_DETECTED_-PICTURE-_%d/%m/%Y_%H.%M <your email>@<mail.com>
on_movie_end    (echo -e 'Movement detected here is the movie'; uuencode %f %f) | mail -s [ShedaMotionOrbitManager]_MOVEMENT_DETECTED_-MOVIE-_%d/%m/%Y_%H.%M <your email>@<mail.com>

More on MotionSpecifier

Note: This example use uuencode part of sharutils package to install it:

sudo apt-get install sharutils

Toying

This will move the camera to the watching position(see /etc/sheda_motion_orbit_manager.conf) then launch the server then launch the watch:

$ sheda_motion_orbit_manager start -w -m

This will stop the watch then move the camera to the off position(see /etc/sheda_motion_orbit_manager.conf).

$ sheda_motion_orbit_manager stop -w -m

note: Moving to the off position can be used to physically mask camera view (should have rename this option -p for paranoid)

More information

Interesting WebPages url/port:

Interesting files for webserver

  • /var/run/sheda_motion_orbit_webserver.pid
  • /var/log/sheda_motion_orbit_manager_webserver.log

Interesting file for script

  • /var/run/sheda_motion_orbit_manager.pid
  • /var/log/sheda_motion_orbit_manager.log
  • /etc/sheda_motion_orbit_manager.conf

Interesting file for motion, second is for detection generated pictures/movies:

  • /etc/motion/motion.conf
  • /tmp/motion/*

For more info on sheda.fr

Todos

  • IP watch disable if some IP appear on the network

About

Manage motion live streaming and surveillance activity, as well as movement for Logitech Orbit Cam

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published