forked from primaeval/plugin.video.iptv.recorder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addon.xml
53 lines (52 loc) · 2 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
<addon id="plugin.video.iptv.recorder"
version="0.0.131"
name="IPTV Recorder"
provider-name="primaeval, Chychy">
<requires>
<import addon="xbmc.python" version="2.20.0"/>
<import addon="script.module.xbmcswift2" version="2.4.0"/>
<import addon="script.module.requests" version="2.9.1" />
<import addon="script.module.chardet" />
<import addon="script.module.pytz" />
</requires>
<extension point="xbmc.python.pluginsource" library="main.py">
<provides>video</provides>
</extension>
<extension point="xbmc.python.script" library="default.py">
<provides>executable</provides>
</extension>
<extension point="kodi.context.item">
<menu id="kodi.core.main">
<item library="context.py">
<label>IPTV Recorder Timer</label>
<visible>Window.isActive(tvchannels)</visible>
</item>
<item library="contextEPG.py">
<label>Schedule IPTV Recorder</label>
<visible>Window.isActive(tvguide)</visible>
</item>
</menu>
</extension>
<extension point="xbmc.service" library="server.py" start="login"/>
<extension point="xbmc.addon.metadata">
<summary lang="en">Record from IPTV Simple Client or xmltv/m3u with ffmpeg.</summary>
<description lang="en">
Set your recording path and ffmpeg location.
On Android ffmpeg will be copied to /data/data to be runnable.
Complex stream handling might need an extra script instead of ffmpeg.
ffmpeg simply copies the stream into a transport stream container.
</description>
<disclaimer lang="en">Make sure recording streams is legal in your country.</disclaimer>
<source>https://github.com/primaeval/plugin.video.iptv.recorder</source>
<forum>https://forum.kodi.tv/showthread.php?tid=329991</forum>
<language>en fr de</language>
<news>Now records plugin:// links in Leia</news>
<assets>
<icon>icon.png</icon>
<screenshot>resources/screenshots/screenshot-00.jpg</screenshot>
<screenshot>resources/screenshots/screenshot-01.jpg</screenshot>
<screenshot>resources/screenshots/screenshot-02.jpg</screenshot>
</assets>
</extension>
</addon>