home-assistant.io/source/_components/media_player.mpd.markdown
Alok Saboo 1aca7b08cf Misc fixes: e.g. -> e.g., and proper case for Home Assistant (#4942)
* e.g. to e.g., and proper case for Home Assistant

* Instructions how to -> Instructions on how to
2018-03-17 20:20:37 +01:00

1.8 KiB

layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_category, ha_release, ha_iot_class
layout title description date sidebar comments sharing footer logo ha_category ha_release ha_iot_class
page Music Player Daemon (MPD) Instructions on how to integrate Music Player Daemon into Home Assistant. 2016-09-30 23:06 true false true true mpd.png Media Player pre 0.7 Local Polling

The mpd platform allows you to control a Music Player Daemon from Home Assistant. Unfortunately you will not be able to manipulate the playlist (add or delete songs) or add transitions between the songs.

Even though no playlist manipulation is possible, it is possible to use the play_media service to load an existing saved playlist as part of an automation or scene.

To add MPD to your installation, add the following to your configuration.yaml file:

# Example configuration.yaml entry
media_player:
  - platform: mpd
    host: IP_ADDRESS

Configuration variables:

  • host (Required): IP address of the Host where Music Player Daemon is running.
  • port (Optional): Port of the Music Player Daemon. Defaults to 6600.
  • name (Optional): Name of your Music Player Daemon. Defaults to "MPD".
  • password (Optional): Password for your Music Player Daemon.

Example script to load a saved playlist called "DeckMusic" and set the volume:

relaxdeck:
    sequence:
    - service: media_player.play_media
      data:
        entity_id: media_player.main
        media_content_type: playlist
        media_content_id: DeckMusic

    - service: media_player.volume_set
      data:
        entity_id: media_player.main
        volume_level: 0.60

This platform works with Music Player Daemon and mopidy with Mopidy-MPD as used by Pi MusicBox.