UNIFI cameras

Posted on
Sun Apr 22, 2018 8:21 pm
kw123 offline
User avatar
Posts: 8363
Joined: May 12, 2013
Location: Dallas, TX

UNIFI cameras

has anyone installed / is using unifi cameras -- any advice experience would be welcome..

Karl

Posted on
Mon Apr 23, 2018 8:11 am
Korey offline
User avatar
Posts: 813
Joined: Jun 04, 2008
Location: Henderson, NV

Re: UNIFI cameras

I have 3 of the UVC-G3 series working with Security Spy.

Great image quality, I plan to add a few more .
Attachments
++video.jpeg
++video.jpeg (181.88 KiB) Viewed 3649 times

--
Korey

Posted on
Mon Apr 23, 2018 9:37 am
kw123 offline
User avatar
Posts: 8363
Joined: May 12, 2013
Location: Dallas, TX

Re: UNIFI cameras

Do you have them outside?
Looks like not a lot of rain there.
There is some discussion that they are not well sealed.


Sent from my iPhone using Tapatalk

Posted on
Mon Apr 23, 2018 9:55 am
Korey offline
User avatar
Posts: 813
Joined: Jun 04, 2008
Location: Henderson, NV

Re: UNIFI cameras

All are outside, under eves, and no, not much rain here in the desert!

--
Korey

Posted on
Mon Apr 23, 2018 10:14 am
kw123 offline
User avatar
Posts: 8363
Joined: May 12, 2013
Location: Dallas, TX

Re: UNIFI cameras

Also how is the dynamic range. ie full sun and darker light.. and did you get the IR range extender?

Posted on
Mon Apr 23, 2018 10:29 am
autolog offline
Posts: 3988
Joined: Sep 10, 2013
Location: West Sussex, UK [GMT aka UTC]

Re: UNIFI cameras

As an aside regarding IR: The LIFX+ lamps are very good at IR. You can't see that they are on with the naked eye but the room is completely illuminated when viewing through a camera in IR mode. :)

Posted on
Mon Apr 23, 2018 11:02 am
kw123 offline
User avatar
Posts: 8363
Joined: May 12, 2013
Location: Dallas, TX

Re: UNIFI cameras

interesting.. do they work w/o alexa.. is the a plugin / api ..?

[EDIT] just saw this; https://lan.developer.lifx.com/v2.0/doc ... col-header

and the autologo plugin ..

Posted on
Mon Apr 23, 2018 12:12 pm
eme jota ce offline
Posts: 618
Joined: Jul 09, 2009
Location: SW Florida

Re: UNIFI cameras

I have five or six Unifi cameras installed outside. Most are in covered areas, but one has been directly exposed to elements of Florida since installing soon after Hurricane Irma hit this area about 8 months ago. It's POE via a cable that is probably 75' long. Image quality is good. Lens gets dirty and salty, though. Reliability has been perfect, as far as I can recall.

The biggest drawback I've noticed with these cameras is finding and applying the firmware updates, which requires checking the Unifi website, downloading to a computer, then uploading via the camera's interface on the local network. (Would prefer that it just checked for firmware updates and let me click to install).

Integrated into Indigo via the SecuritySpy plugin. Requires a manual configuration, but not difficult. Instructions on the Security Spy website.

Posted on
Tue Apr 24, 2018 4:36 pm
kw123 offline
User avatar
Posts: 8363
Joined: May 12, 2013
Location: Dallas, TX

Re: UNIFI cameras

... 5 or 6 cameras.... don’t know how many? ;)


Have installed the free UniFi nvr system on a virtual box running Ubuntu on a 2008 Mac Pro. . Seems to work well.
Load with one camera is ~10-15% of one CPU ~5% total.

Will be adding more cameras over the next weeks. And will test the limits but it seems to be stable and performing.



Sent from my iPhone using Tapatalk

Posted on
Wed Apr 25, 2018 4:58 am
eme jota ce offline
Posts: 618
Joined: Jul 09, 2009
Location: SW Florida

Re: UNIFI cameras

kw123 wrote:
... 5 or 6 cameras.... don’t know how many? ;)


Nope.

Posted on
Wed Apr 25, 2018 7:04 am
Korey offline
User avatar
Posts: 813
Joined: Jun 04, 2008
Location: Henderson, NV

Re: UNIFI cameras

kw123 wrote:
Also how is the dynamic range. ie full sun and darker light.. and did you get the IR range extender?


They seem pretty good all around, lots of bang for the buck!

I do not have the IR extenders.

--
Korey

Posted on
Wed Apr 25, 2018 9:52 am
kw123 offline
User avatar
Posts: 8363
Joined: May 12, 2013
Location: Dallas, TX

Re: UNIFI cameras

found a nice little thing ..

if you are using unifies NVR (soft or hardware..) Here is how to reset the password of the unifi app running on the server-- not the server

ssh to the NVR box
enter
Code: Select all
mongo 127.0.0.1:7441/av
db.account.update( { username: "yourusername" }, {$set: { password: "$2a$06$cJz8kbmsELt.zmoXRGFs.uJwimjClVdIfu/NCt.A.pFdQyQJpji9K" } } )

will set yourusername password to ubtn
2a$06$cJz8kbmsELt.zmoXRGFs.uJwimjClVdIfu/NCt.A.pFdQyQJpji9K is the hash for ubnt

then you can login again the unifi app through the web browser with password ubnt and set the password to whatever you like


Karl

Posted on
Wed Apr 25, 2018 9:56 am
kw123 offline
User avatar
Posts: 8363
Joined: May 12, 2013
Location: Dallas, TX

Re: UNIFI cameras

and a second .. if you are running the unifi app on a ubuntu virtual box this little python script comes in handy:

Code: Select all
import subprocess
vmMachine = "ubuntu"
vboxPath  = "/Applications/VirtualBox.app/Contents/MacOS/"
command   = "start" # or stop or test

runningVMs = subprocess.Popen(vboxPath+"VBoxManage  list runningvms",stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True).communicate()[0]
indigo.server.log("\n>>"+ runningVMs+"<<")

if command =="start":
   if runningVMs.find(vmMachine) ==-1:
      indigo.server.log(vmMachine+" starting vbox ")
      subprocess.Popen(vboxPath+'VBoxManage  startvm "'+vmMachine+'" --type headless &', shell=True)
   else:
      indigo.server.log(vmMachine+"  vBox is already running")

elif command =="stop":
   if runningVMs.find(vmMachine) >-1:
      subprocess.Popen(vboxPath+'VBoxManage controlvm "'+ vmMachine+'"  acpipowerbutton &', shell=True )

else:
   if len(runningVMs) > 10:   
      indigo.server.log(vmMachine +"  vbox is running ")
   else:   
      indigo.server.log(vmMachine +"  vbox is NOT running ")


this will do
- start Vbox with server = vmMachine
- stop (soft shutdown) server = vmMachine
- test if server = vmMachine is running


Karl

Posted on
Thu Apr 26, 2018 9:29 pm
kw123 offline
User avatar
Posts: 8363
Joined: May 12, 2013
Location: Dallas, TX

Re: UNIFI cameras

In process of adding the video nvr system to the UniFi plugin

It will have
- Camera info
- Motion events
Available in indigo

So you can set triggers on motions detected in the UniFi cameras.

Anyone interested .. if so, I can write up how to add a Ubuntu virtual box w the UniFi nvr app to your mac.

Karl.

Having just 2 up and running- adding 4 more. Really impressed by the hardware and software — well done.
Not on the cheap side but they look really good. Also the led ir booster works nicely. Illuminates > 20 meters.


Sent from my iPhone using Tapatalk

Posted on
Thu Apr 26, 2018 9:38 pm
Korey offline
User avatar
Posts: 813
Joined: Jun 04, 2008
Location: Henderson, NV

Re: UNIFI cameras

Killer!!

I was just about to ask you about this !

--
Korey

Who is online

Users browsing this forum: No registered users and 1 guest