jmburton2001
Getting the hang of it
- Aug 16, 2015
- 98
- 40
Ok Couple of questions. I can make it pushover aspect work from command line. Are you setting your notifications under alerts tab or the trigger tab under immediate actions? Is there a trick to testing the macro options in Blue Iris itself? Also from I can tell you replace the &CAM &Memo info with your your verbiage? I was trying to confirm that the options in the BI are using: @C:\BlueIris\Alerts\&ALERT_PATH. I assume "&ALERT_PATH" is the jpg image of the current snapshot. I also wondered if I using deepstack do I have to mention required AI objects? My sms setup only alerted on confirmed deepstack items.
My strings below works in cli, when I replace the macros with the required api info and alert_path with a file name. but I have yet to get any notifications from BI with this string.
-s --form-string "token=%996" --form-string "user=%997" --form-string "message=<b>&CAM</b> &MEMO" -F "attachment=@C:\BlueIris\Alerts\&ALERT_PATH"
Alerts tab > On Alerts…Are you setting your notifications under alerts tab or the trigger tab under immediate actions?
Yes. See the prerequisite requirement about the Blue Iris service account and provided links in the “Debugging” section in post #1 in this thread.Is there a trick to testing the macro options in Blue Iris itself?
Yes, you may use any text you desire. Including HTML markup.Also from I can tell you replace the &CAM &Memo info with your your verbiage?
--form-string "html=1"
This is the path to the most recent alert image on the camera.I assume "&ALERT_PATH" is the jpg image of the current snapshot.
No.I also wondered if I using deepstack do I have to mention required AI objects? My sms setup only alerted on confirmed deepstack items.
No. Single camera alert images only.is there away to make it with use a group of camera snaps like in sms when one of the group trigger?
Create the “run a program” action as follows…I going to test using the msgbox mentioned in that post but I got lost on the camera preset it make reference to for testing your string, I need referred to as preset.
Alerts tab > On Alerts…
Yes. See the prerequisite requirement about the Blue Iris service account and provided links in the “Debugging” section in post #1 in this thread.
Yes, you may use any text you desire. Including HTML markup.
HTML markup requires argument--form-string "html=1"
This is the path to the most recent alert image on the camera.
Note that it must be saved via the record tab, or via the “Burn label mark-up…” checkbox on the Trigger tab > AI dialog.
No.
No. Single camera alert images only.
Create the “run a program” action as follows…
Camera settings > PTZ/Control tab > Edit presets > Select unused preset > On call…
Alerts tab > On Alerts…
Yes. See the prerequisite requirement about the Blue Iris service account and provided links in the “Debugging” section in post #1 in this thread.
Yes, you may use any text you desire. Including HTML markup.
HTML markup requires argument--form-string "html=1"
This is the path to the most recent alert image on the camera.
Note that it must be saved via the record tab, or via the “Burn label mark-up…” checkbox on the Trigger tab > AI dialog.
No.
No. Single camera alert images only.
Create the “run a program” action as follows…
Camera settings > PTZ/Control tab > Edit presets > Select unused preset > On call…
curl https://api.pushover.net/1/messages.json -s --form-string "token=f" --form-string "user=f" --form-string "message=Person Detected at %X" --form-string "title=Bedroom Window" --form-string "device=Device" -F "attachment=@E:\Alerts\FRLEFTDS.20220914_131115.0.130-1.0.0.jpg"
Good idea.I figured it, that was actually correct but it just had to come from a camera for real
What I have found is that if you have bad or week service I don't always get the image in the push. But I have not noticed any missing alerts.Has anyone had issues with missing notifications? I'm trying to figure out if there is a way to log and retry ones that fail to go through
99% of the time they work, but sometimes Pushover won't notify for one. I can confirm it's not a BI issue, as for most of these I have E-Mail + Pushover. So I can see the email come through, but not a Pushover
Yes, you can log roll your own logging system. See item #2 in the Debugging section in post #1.I'm trying to figure out if there is a way to log and retry ones that fail to go through
%008/admin?log=pushover%%20notification%%20attempted:%%20&CAM%%20[&MEMO]&level=0
%%20
(as shown), just in case you define a Blue Iris macro %20. The double %% will insert a literal percent mark and prevent expanding a macro.&CAM
macro in the message. As shown in the 1st screenshot above, BI logfile entry will always show the 'object' column entry as 'External'.%008
macro Is necessary because the &LAN
and &WAN
macros already contain the ‘http://‘ substring. Using these macros will cause the action to fail.&user=username&pw=password
to the code in the URL box.Yes, that’s correct.So if i understand you correctly this just adds a log entry for each pushover notice along with a status of the push?