Franck Nijhof 1833c32a2c Cleans up front matter (#9835)
* Sets front matter defaults

* Removes default front matter from section templates/pages

* Removes default front matter from addon pages

* Removes default front matter from integration pages

* Removes default front matter from posts

* Removes default front matter from docs pages

* Removes default front matter from other pages

* Fixes blog category pages
2019-07-11 14:35:08 -07:00

1.8 KiB

title, description, logo, ha_category, ha_release, ha_iot_class, redirect_from
title description logo ha_category ha_release ha_iot_class redirect_from
DLNA DMR Instructions on how to integrate a DLNA DMR device into Home Assistant. dlna.png
Media Player
0.76 Local Push
/components/media_player.dlna_dmr/

The dlna_dmr platform allows you to control a DLNA Digital Media Renderer, such as DLNA enabled TVs or radios.

Please note that some devices, such as Samsung TVs, are rather picky about the source used to play from. The TTS service might not work in combination with these devices. If the play_media service does not work, please try playing from a DLNA/DMS (such as MiniDLNA).

Configuration

To add a DLNA DMR device to your installation, add the following to your configuration.yaml file:

# Example configuration.yaml entry
media_player:
  - platform: dlna_dmr
    url: http://192.168.0.10:9197/description.xml

{% configuration %} url: description: The URL to the device description .xml file, e.g., http://192.168.0.10:9197/description.xml. required: true type: string listen_ip: description: IP to listen on for events from the device. Only set this when the IP is not detected properly. required: false type: string listen_port: description: Port to listen on for events from the device. required: false default: 8301 type: integer name: description: The name you would like to give to the device, e.g., TV living room. required: false type: string callback_url_override: description: Override the advertised callback URL. In case the home assistant instance is not directly reachable (e.g., running in a docker container without bridged-networking), advertise this callback URL for events. required: false type: string {% endconfiguration %}