warwickh / kodi2mqtt

MQTT addon for Kodi Mediacenter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MQTT addon for Kodi

Written and (C) 2015-16 Oliver Wagner owagner@tellerulam.com Additional changes: See service.mqtt/changelog.txt

Provided under the terms of the MIT license.

Overview

This is a Kodi addon which acts as an adapter between a Kodi media center instance and MQTT. It publishes Kodi's playback state on MQTT topics, and provides remote control capability also via messages to MQTT topics.

It's intended as a building block in heterogenous smart home environments where an MQTT message broker is used as the centralized message bus. See https://github.com/mqtt-smarthome for a rationale and architectural overview.

Modifications from original owanger version:

  • Bugfix: playing/resumed events now fire consistently
  • Bugfix: Updated Paho to 1.5.1 to fix reconnect crash (https://github.com/eclipse/paho.mqtt.python)
  • Feature: All Kodi API notification events are published
  • Feature: Volume control
  • Feature: Send title with each progress update, to handle radio streams which update their 'now playing'.

Dependencies

  • Tested on Kodi 19 Matrix. Other versions may work, feel free to report any that do, I'll add them here.
  • Eclipse Paho for Python - http://www.eclipse.org/paho/clients/python/ (used for MQTT communication). This is included with the plugin.

Settings

The addon has multiple settings:

  • the MQTT broker's host name or IP address (defaults to 127.0.0.1)
  • the MQTT broker's port. This defaults to 1883, which is the MQTT standard port for unencrypted connections.
  • the topic prefix which to use in all published and subscribed topics. Defaults to "kodi/".
  • MQTT authentication and TLS settings
  • update frequency intervals
  • keyword filtering on content details, to prevent certain kind of content to be e.g. displayed in a SmartHome visualization

Topics

The addon publishes on the following topics (prefixed with the configured topic prefix):

  • connected: 2 if the addon is currently connected to the broker, 0 otherwise. This topic is set to 0 with a MQTT will.
  • status/playbackstate: a JSON-encoded object with the fields
    • "val" for the current playback state with 0=stopped, 1=playing, 2=paused
    • "kodi_playbackdetails": an object with further details about the playback state. This is effectivly the result of the JSON-RPC call Player.GetItem with the properties "speed", "currentsubtitle", "currentaudiostream", "repeat" and "subtitleenabled"
    • "kodi_playerid": the ID of the active player
    • "kodi_playertype": the type of the active player (e.g. "video")
  • status/progress: a JSON-encoded object with the fields
    • "val" is the percentage of progress in playing back the current item
    • "kodi_time": the playback position in the current item
    • "kodi_totaltime": the total length of the current item
  • status/playertitle: The title of what's currently playing, updated at the same interval as progress. For radio streams which tend to change their title, this can be used to show an up to date title.
  • status/title: a JSON-encoded object with the fields
    • "val": the title of the current playback item
    • "kodi_details": an object with further details about the current playback items. This is effectivly the result of a JSON-RPC call Player.GetItem with the properties "title", "streamdetails", "file", "thumbnail" and "fanart"
  • status/notification/: Any Kodi notification event, with the event json data as body. This is connected to xbmc::Monitor::onNotification, with method as last part of the topic, and data as the payload.
  • status/screensaver: '1'/'0' on screensaver activation/deactivation

The addon listens to the following topics (prefixed with the configured topic prefix):

  • command/notify: Either a simple string, or a JSON encoded object with the fields "message" and "title". Shows a popup notification in Kodi
  • command/play: Either a simple string which is a filename or URL, or a JSON encoded object which correspondents to the Player.Open() JSON_RPC call
  • command/volume: Set the volume to value or or a JSON encoded object which correspondents to the Application.SetVolume() JSON_RPC call
  • command/playbackstate: A simple string or numeric with the values:
    • "0" or "stop" to stop playback
    • "1" or "resume" or "play" to resume playback (when paused or stopped)
    • "2" or "pause" to stop playback (when playing)
    • "toggle" to toggle between play and pause
    • "next" to play the next track
    • "previous" to play the previous track
    • "playcurrent" to play the currently selected track
  • command/progress: A string having format hours:minutes:seconds. Changes position of currently played file
  • command/api: The full JSON_RPC API is accessible:
    • {"method":"GUI.ShowNotification","jsonrpc":"2.0","params":{"title":"Test Title","message":"Test Message"},"playerid":"1"}
  • command/cecstate: Expects value '1' or 'activate', might wake up tv with CEC (workaround by muracz)

See also

Changelog

Please see service.mqtt/changelog.txt for the change log

About

MQTT addon for Kodi Mediacenter


Languages

Language:Python 100.0%