c0834979ea
Build Kodi Addon / build (push) Successful in 4s
Kodi service addon that detects HDR/SDR state of the currently playing video and notifies external services: - HyperHDR: toggles tone mapping via videomodehdr JSON-RPC command - Home Assistant: sends HDR state via webhook trigger Supports Kodi 20 (Nexus) and later. Both targets are independently configurable with host, port, SSL, and authentication settings. Includes GitHub Actions workflow to build installable ZIP packages on every push and publish them as release assets on tags.
19 lines
1.2 KiB
XML
19 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
<addon id="service.video.hdrnotify"
|
|
name="HDR Notify"
|
|
version="1.0.0"
|
|
provider-name="Oleksandr">
|
|
<requires>
|
|
<import addon="xbmc.python" version="3.0.0"/>
|
|
</requires>
|
|
<extension point="xbmc.service" library="service.py"/>
|
|
<extension point="xbmc.addon.metadata">
|
|
<summary lang="en_GB">Notifies HyperHDR and Home Assistant about HDR/SDR playback state</summary>
|
|
<summary lang="uk_UA">Сповіщає HyperHDR та Home Assistant про стан HDR/SDR відтворення</summary>
|
|
<description lang="en_GB">Automatically detects HDR/SDR mode of currently playing video and sends the state to HyperHDR (to toggle tone mapping) and/or Home Assistant (via webhook). Supports Kodi 20 (Nexus) and later.</description>
|
|
<description lang="uk_UA">Автоматично визначає режим HDR/SDR поточного відео та надсилає стан до HyperHDR (для перемикання тонального відображення) та/або Home Assistant (через вебхук). Підтримує Kodi 20 (Nexus) та новіші версії.</description>
|
|
<platform>all</platform>
|
|
<license>MIT</license>
|
|
</extension>
|
|
</addon>
|