Merge pull request #17 from fabaff/mpd

Music Player Daemon
This commit is contained in:
Paulus Schoutsen 2015-06-02 00:00:24 -07:00
commit 406f09fe4d
4 changed files with 37 additions and 2 deletions

View File

@ -103,7 +103,13 @@ Entities are things that you want to observe within Home Assistant. Support for
<tr> <tr>
<td><a href='/components/media_player.cast.html'><img src='/images/supported_brands/google_cast.png' class='brand overview' /></a></td> <td><a href='/components/media_player.cast.html'><img src='/images/supported_brands/google_cast.png' class='brand overview' /></a></td>
<td><a href='/components/media_player.cast.html'>Google Cast devices</a></td> <td><a href='/components/media_player.cast.html'>Google Cast devices</a></td>
<td>Track what is being played and control playback. (temporarely disabled awaiting protobuf 3 release).</td> <td>Track what is being played and control playback (temporarely disabled awaiting protobuf 3 release).</td>
</tr>
<tr>
<td><a href='/components/media_player.mpd.html'><img src='/images/supported_brands/mpd.png' class='brand overview' /></a></td>
<td><a href='/components/media_player.mpd.html'>Music Player Daemon (MPD)</a></td>
<td>Track what is being played and control playback.</td>
</tr> </tr>
<tr> <tr>

View File

@ -9,7 +9,12 @@ sharing: true
footer: true footer: true
--- ---
Interacts with media players on your network. Currently only supports [Chromecasts](/components/media_player.cast.html). Interacts with media players on your network.
Currently supported devices:
- [Chromecasts](/components/media_player.cast.html)
- [Music Player Daemon](/components/media_player.mpd.html)
## Services ## Services

View File

@ -0,0 +1,24 @@
---
layout: page
title: "Music Player Daemon support"
description: "Instructions how to integrate Music Player Daemon into Home Assistant."
date: 2015-06-02 08:00
sidebar: false
comments: false
sharing: true
footer: true
---
<img src='/images/supported_brands/mpd.png' class='brand pull-right' />
The mpd platform allows you to control a [Music Player Daemon](http://www.musicpd.org/) from Home Assistant. Unfortunatly you will not be able to manipulate the playlist (add or delete songs) or add transitions between the songs.
To add MPD to your installation, add the following to your `configuration.yaml` file:
```
media_player:
platform: mpd
server: 127.0.0.1
port: 6600
location: bedroom
```

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB