-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaddon.xml
28 lines (28 loc) · 1.33 KB
/
addon.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.popcornphp.stream.player" name="Stream Player" version="1.0.0" provider-name="farwarx">
<requires>
<import addon="xbmc.python" version="2.19.0"/>
<import addon="xbmc.json" version="6.20.0"/>
<import addon="xbmc.addon" version="14.0.0"/>
<import addon="script.module.elementtree" version="1.2.7"/>
<import addon="script.module.simplejson" version="2.0.10" optional="true"/>
<import addon="script.common.plugin.cache" version="1.3.0"/>
</requires>
<extension point="xbmc.python.script" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="fr">Stream Player pour une utilisation exclusive avec JSON.</summary>
<description lang="fr">Permet de lancer un stream vidéo depuis le réseau en JSON.</description>
<summary lang="en">Stream Player for exclusive use with JSON.</summary>
<description lang="en">Starts a video stream from the network in JSON.</description>
<disclaimer lang="fr"></disclaimer>
<language></language>
<platform>all</platform>
<license>GNU GPLv2</license>
<forum></forum>
<website></website>
<email></email>
<source>https://github.com/farwarx/json-stream-player</source>
</extension>
</addon>