-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaddon.xml
More file actions
19 lines (19 loc) · 1.22 KB
/
Copy pathaddon.xml
File metadata and controls
19 lines (19 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.module.sidedata" name="Sidedata" version="1.7.0" provider-name="matthane">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
</requires>
<extension point="xbmc.service" library="service.py"/>
<extension point="xbmc.python.module" library="lib"/>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Per frame video metadata for CoreELEC 22.</summary>
<description lang="en_GB">Reads the raw video metadata CoreELEC 22 publishes frame by frame during playback. Addons get it as a plain dict, skins get it as Home window properties. Stock Kodi does not publish the metadata, so CoreELEC 22 is required.</description>
<assets>
<icon>resources/icon.png</icon>
</assets>
<platform>all</platform>
<license>GPL-2.0-or-later</license>
<news>v1.7.0: decodes the display's Dolby Vision VSVDB. Addons get the fields from parse_vsvdb, skins get them as vsvdb. window properties.
v1.6.0: publishes the composer data_mapping (reshaping curves and NLQ dequantization) with an include_mapping opt-out, plus the remaining header and block scalars. Every field libdovi decodes is now published.</news>
</extension>
</addon>