mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-24 11:06:51 +00:00

* d and e integrations: apply sentence-style capitalization - add references to glossary terms * Apply suggestions from code review * Apply suggestions from code review Co-authored-by: Joakim Sørensen <joasoe@gmail.com> * Apply suggestions from code review Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Fix typo --------- Co-authored-by: Joakim Sørensen <joasoe@gmail.com> Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
49 lines
1.1 KiB
Markdown
49 lines
1.1 KiB
Markdown
---
|
|
title: Emby
|
|
description: Instructions on how to integrate Emby into Home Assistant.
|
|
ha_category:
|
|
- Media player
|
|
ha_release: 0.32
|
|
ha_iot_class: Local Push
|
|
ha_codeowners:
|
|
- '@mezz64'
|
|
ha_domain: emby
|
|
ha_platforms:
|
|
- media_player
|
|
ha_integration_type: integration
|
|
---
|
|
|
|
The **Emby** {% term integration %} allows you to control a [Emby](https://emby.media/) multimedia system from Home Assistant.
|
|
|
|
To add Emby to your installation, add the following to your `configuration.yaml` file:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
media_player:
|
|
- platform: emby
|
|
host: YOUR_IP_ADDRESS
|
|
api_key: YOUR_API_KEY
|
|
```
|
|
|
|
{% configuration %}
|
|
host:
|
|
description: The host name or IP address of the device that is running Emby.
|
|
required: false
|
|
default: localhost
|
|
type: string
|
|
api_key:
|
|
description: The API key to use to authenticate.
|
|
required: true
|
|
type: string
|
|
ssl:
|
|
description: 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
|
|
{% endconfiguration %}
|