Metadata-Version: 2.1
Name: Mopidy-MQTT-NG
Version: 0.2.0
Summary: Mopidy extension for remote control via MQTT broker
Home-page: https://github.com/odiroot/mopidy-mqtt
Author: Michal Odnous
Author-email: odiroot@users.noreply.github.com
License: Apache License, Version 2.0
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Multimedia :: Sound/Audio :: Players
Classifier: Environment :: No Input/Output (Daemon)
Description-Content-Type: text/markdown
Requires-Dist: Mopidy (>=2.0)
Requires-Dist: paho-mqtt
Requires-Dist: Pykka (>=2.0)
Requires-Dist: setuptools

Based on ![magcode's](https://github.com/magcode) ![work](https://github.com/magcode/mopidy-mqtt).

[![Build Status](https://travis-ci.org/odiroot/mopidy-mqtt.svg?branch=master)](https://travis-ci.org/odiroot/mopidy-mqtt)

# Features

This Mopidy Frontend Extension allows you to control Mopidy with MQTT and retrieve some information from Mopidy via MQTT.
The implementation is very basic. Open for any kind of pull requests.

## Status update

Mopidy sends an update as soon the playback state changes:

`mytopic/state -> 'paused'`

When a new title or stream is started Mopidy sends this via `nowplaying`

`mytopic/nowplaying -> 'myradio'`

## Play a song or stream
You can start playback of a song or stream via MQTT. Send the following:

`mytopic/play -> 'tunein:station:s48720'`

## Stop playback
You can stop the playback via MQTT. Send the following:

`mytopic/control -> 'stop'`

## Change volume
You can change the mixer volume from 0 to 100 via MQTT. Send the following:

`mytopic/volume -> '50'`

# Installation

TODO: Update for the changes.


