-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaddon.xml
More file actions
28 lines (28 loc) · 1.5 KB
/
addon.xml
File metadata and controls
28 lines (28 loc) · 1.5 KB
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.audiooffsetmanager" version="1.6.0~beta3" name="Audio Offset Manager" provider-name="matthane">
<requires>
<import addon="xbmc.python" version="3.0.1"/>
</requires>
<extension point="xbmc.service" library="service.py" />
<extension point="xbmc.python.script" library="script.py" />
<extension point="xbmc.addon.metadata">
<source>https://github.com/matthane/script.audiooffsetmanager</source>
<news>v1.6.0 (2025-11-29)
- Fix instances of the addon not correctly detecting the current audio stream.
- Fix compatibility with PM4K (Plexmod for Kodi)
- Change real test video to dummy test video to reduce package size
- Add Advanced settings category with debug logging toggle
</news>
<summary lang="en_GB">Dynamically manages audio offsets</summary>
<description lang="en_GB">This add-on intelligently adjusts the audio offset based on the detected HDR type, audio format, and FPS type according to user-configured settings, along with other helpful features</description>
<platform>all</platform>
<license>GPL-3.0-or-later</license>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.jpg</fanart>
<screenshot>resources/screenshot-1.jpg</screenshot>
<screenshot>resources/screenshot-2.jpg</screenshot>
<screenshot>resources/screenshot-3.jpg</screenshot>
</assets>
</extension>
</addon>