Update media player emby (#6888)

* Update media player emby

* Minor changes
This commit is contained in:
Emeric 2018-10-17 23:30:15 +02:00 committed by Fabian Affolter
parent 916c906b4e
commit acdb52fb8d

View File

@ -26,10 +26,29 @@ media_player:
api_key: "emby_api_key" api_key: "emby_api_key"
``` ```
Configuration variables: {% configuration %}
host:
- **host** (*Optional*): The host name or address of the device that is running Emby. Defaults to ```localhost```. description: The host name or IP address of the device that is running Emby.
- **api_key** (*Required*): The api-key you would like home-assistant to use to authenticate. required: false
- **ssl** (*Optional*): True if you want to connect with https/wss. Your SSL certificate must be valid. Default is False. default: localhost
- **port** (*Optional*): The port number. Defaults to 8096 with SSL set to False and 8920 with SSL set to True. type: string
- **auto_hide** (*Optional*): True if you want to automatically hide devices that are unavailable from the Home Assistant Interface. Defaults to False. api_key:
description: The API key to use to authenticate.
required: true
type: string
ssl:
description: True if you want to connect with HTTPS/WSS. Your SSL certificate must be valid.
required: false
default: false
type: boolean
port:
description: The port number of the device that is running Emby.
required: false
default: 8096 (No SSL), 8920 (SSL)
type: integer
auto_hide:
description: True if you want to automatically hide devices that are unavailable from the Home Assistant Interface.
required: false
default: false
type: boolean
{% endconfiguration %}