-
Notifications
You must be signed in to change notification settings - Fork 5
/
addon.xml
21 lines (21 loc) · 940 Bytes
/
addon.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.zoneminder" name="ZoneMinder" version="3.0.0" provider-name="Peter Gallagher">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.requests" version="2.7.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="zoneminder.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en_GB">View ZoneMinder video surveillance system</summary>
<description lang="en_GB">View the live stream of cameras via the Zoneminder video surveillance system.</description>
<license>GPL-3.0-or-later</license>
<source>https://github.com/petegallagher/plugin.video.zoneminder</source>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.jpg</fanart>
</assets>
</extension>
</addon>