[quote=“lunchour, post:190, topic:181819”]If you set up a scene that when a device is tripped (like a motion sensor) and add the luup command below will trigger recording start in BI.
luup.inet.wget(“http://192.168.1.140:xxxx/admin?camera=G1&trigger&user=xxxx&pw=xxxx”)
192.168.1.140:xxxx is your computer’s IP and port that is running BI
Camera=G1 is the camera short name in BI
User=xxxx is your BI user name
Pw=is the BI password
In the camera properties, motion/trigger tab set “End trigger unless re-triggered within xxx.xx sec. (this is the break time)” in the record tab, from the pull down list “Video: when triggered”. You can add more cameras to a group and have them all record if you like.[/quote]
Looks the same as I posted on page 10 post# 144 last month.
[quote=“integlikewhoa, post:145, topic:181819”]You can already trigger BI to start recording by sending a http command. And you can send the http command via LUUP in scene or with PLEG.
The command would be as follows:
http://“YourIP:YourPort”/admin?camera=“ShortCarmeraName”&trigger&user=“YourUserName”&pw=“YourPassword”
So for an example of my computer IP # 192.168.1.100 and port #9999
May camer short name is Patio
and my user is ADMIN and password is TEST
http://192.168.1.100:9999/admin?camera=PATIO&trigger&user=ADMIN&pw=TEST
That will trigger “Patio” camera to start recording
All of this and more can be found in the “BLUE IRIS HELP PDF” serach google for it.
Page 77 under “Direct image, video and command requests”
But if you have access to the developer he should be able to help you. LOL
I currently use this command
/admin?profile=x Where “X” is the profile number 1-7 that you want. In the example below is #3
http://192.168.1.100:9999/admin?profile=[b]3[/b]&user=ADMIN&pw=TEST
Using my current “home and away” setup in vera I can change BI to different profiles that have different alerts and set motion areas. When I’m gone it records inside the house with any motion, and will send me alerts if motion is detected on inside and outside cameras where people shouldn’t be if I’m home.
When I’m home I don’t want private recordings of inside the house ;D and I don’t want to get a ton of alerts from BI while I’m home.
BI now does some of this with the built in GEOfence on their app, but I haven’t got mine to work very well and I already have a more complex setup then just geofence already taking place in vera so I just use PLEG to send a HTTP code to switch up the profile when me or the wife leave.
EDIT: sorry one more thing in LUUP to send an http command you need to put it in this
luup.inet.wget(“InsertHttpHere”)
Leaving the “” in place. So for above example would look like this
luup.inet.wget(“http://192.168.1.100:9999/admin?profile=[b]3[/b]&user=ADMIN&pw=TEST”)[/quote]