Updated external content (Jenkins build 279)
parent
bba35c8297
commit
4837c46cb0
|
@ -227,6 +227,7 @@ The channels are kept consistent as much as possible from brand to brand to make
|
|||
| `activateAlarmOutput2` | Switch | Toggles a cameras relay output 2. |
|
||||
| `audioAlarm` | Switch (read only) | When the camera detects noise above a threshold this switch will move to ON. |
|
||||
| `autoLED` | Switch | When ON this sets a cameras IR LED to automatically turn on or off. |
|
||||
| `carAlarm` | Switch | When a car is detected the switch will turn ON. |
|
||||
| `cellMotionAlarm` | Switch (read only) | ONVIF cameras only will reflect the status of the ONVIF event of the same name. |
|
||||
| `doorBell` | Switch (read only) | Doorbird only, will reflect the status of the doorbell button. |
|
||||
| `enableAudioAlarm` | Switch | Allows the audio alarm to be turned ON or OFF. |
|
||||
|
@ -248,6 +249,7 @@ The channels are kept consistent as much as possible from brand to brand to make
|
|||
| `gifHistoryLength` | Number | How many filenames are in the `gifHistory`. |
|
||||
| `gotoPreset` | String | ONVIF cameras that can move only. Will cause the camera to move to a preset location. |
|
||||
| `hlsUrl` | String | The URL for the ipcamera.m3u8 file. |
|
||||
| `humanAlarm` | Switch | When a camera detects a human this switch will turn ON. |
|
||||
| `imageUrl` | String | The URL for the ipcamera.jpg file. |
|
||||
| `itemLeft` | Switch (read only) | Will turn ON if an API camera detects an item has been left behind. |
|
||||
| `itemTaken` | Switch (read only) | Will turn ON if an API camera detects an item has been stolen. |
|
||||
|
@ -393,6 +395,9 @@ See this forum thread for examples of how to use snapshots and streams in a site
|
|||
|
||||
## Video Streams
|
||||
|
||||
To get video streams working, this forum thread has working widget examples that you can use.
|
||||
<https://community.openhab.org/t/oh3-widget-building-a-camera-widget/110069>
|
||||
|
||||
To get some of the video formats working, you need to install FFmpeg.
|
||||
Visit their site here to learn how <https://ffmpeg.org/>
|
||||
|
||||
|
|
|
@ -936,6 +936,11 @@
|
|||
<channel id="imageUrl" typeId="imageUrl"/>
|
||||
<channel id="hlsUrl" typeId="hlsUrl"/>
|
||||
<channel id="enablePrivacyMode" typeId="enablePrivacyMode"/>
|
||||
<channel id="carAlarm" typeId="carAlarm"/>
|
||||
<channel id="humanAlarm" typeId="humanAlarm"/>
|
||||
<channel id="tooDarkAlarm" typeId="tooDarkAlarm"/>
|
||||
<channel id="sceneChangeAlarm" typeId="sceneChangeAlarm"/>
|
||||
<channel id="tooBlurryAlarm" typeId="tooBlurryAlarm"/>
|
||||
</channels>
|
||||
<config-description>
|
||||
|
||||
|
@ -2542,6 +2547,22 @@
|
|||
<state readOnly="true"/>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="humanAlarm" advanced="true">
|
||||
<item-type>Switch</item-type>
|
||||
<label>Human Alarm</label>
|
||||
<description>A person has triggered the Human Detection.</description>
|
||||
<category>Alarm</category>
|
||||
<state readOnly="true"/>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="carAlarm" advanced="true">
|
||||
<item-type>Switch</item-type>
|
||||
<label>Car Alarm</label>
|
||||
<description>A car has triggered the Vehicle Detection.</description>
|
||||
<category>Alarm</category>
|
||||
<state readOnly="true"/>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="parkingAlarm" advanced="true">
|
||||
<item-type>Switch</item-type>
|
||||
<label>Parking Alarm</label>
|
||||
|
|
Loading…
Reference in New Issue