I followed your instructions and have all 4 of my cameras setup on a Camera Tab on Lovelace as picture entities. When you click on the Camera tab my PC that runs Blue Iris constantly makes the sound when someone logs in to a camera on BI. The camera images are updating every few seconds. Is it possible to adjust the time between the refreshes to stop this?
Thank you. I couldn’t get the cameras to work using the username & password in the config file so I used the option above that allows only the IP Address of my HA box to log in. The Admin account is being used so I unchecked the “On login play sound” on that account
Is there a way to push a screenshot of the latest triggered camera? For instance I have Hassio in Kiosk mode on my tablet, is there a way to have a screenshot popup automatically when I specific camera is triggered?
Not sure what version of Blue Iris you are runnning, but the help file in mine says you need the /video.mjpg at the end of the url like: http://192.168.1.100:81/mjpg/Cam1/video.mjpg
This works for me, but sadly only when on my home network…the streaming falls waaaaay behind when I switch to my cell connection outside of the house.
Pretty sure that is just my ISP though.
- id: blueiris_profile_2
alias: Blue Iris Profile 2
trigger:
platform: state
entity_id: binary_sensor.people_home
from: 'on'
to: 'off'
action:
- service: switch.turn_on
entity_id: switch.blue_iris
- id: blueiris_profile_1
alias: Blue Iris Profile 1
trigger:
platform: state
entity_id: binary_sensor.people_home
from: 'off'
to: 'on'
action:
- service: switch.turn_off
entity_id: switch.blue_iris
And the command line switch:
switches:
blue_iris:
command_on: '/usr/bin/curl -X GET "http://a.b.c.d:8081/admin?profile=2&lock=2"'
command_off: '/usr/bin/curl -X GET "http://a.b.c.d:8081/admin?profile=1&lock=1"'
friendly_name: Blue Iris
Can I ask how you got it to work? My cameras stopped displaying in home assistant recently without any changes on my part (it was working for months before until recently- not sure if the recent HA updates broke anything).
Not sure if this is related to HA trying to access my cameras (it should be trying to access locally over http not https). My lovelace picture entity card looks like this:
As mentioned before, I haven’t made any changes to my config besides updating Hassio (currently on 0.92.2) and it all of a sudden stopped working. Did you have to do anything with SSL/certificates to get it to work?
I made those two changes and when I log into homeassistant I see the following.
1.) The still image that is refreshed every 5 seconds or so is still not displaying.
2.) However when I click into the camera, I am (finally!) able to view the stream from the camera.
Is this the same behavior on your end as well or are you able to get #1 to show up?