mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-16 22:06:50 +00:00
Add Jellyfin remote (#34871)
Update for https://github.com/home-assistant/core/pull/126461
This commit is contained in:
parent
1bbb8d7d5c
commit
d1a867f740
@ -4,6 +4,7 @@ description: Instructions on how to integrate the Jellyfin integration into Home
|
|||||||
ha_category:
|
ha_category:
|
||||||
- Media player
|
- Media player
|
||||||
- Media source
|
- Media source
|
||||||
|
- Remote
|
||||||
- Sensor
|
- Sensor
|
||||||
ha_release: '2021.12'
|
ha_release: '2021.12'
|
||||||
ha_iot_class: Local Polling
|
ha_iot_class: Local Polling
|
||||||
@ -15,6 +16,7 @@ ha_domain: jellyfin
|
|||||||
ha_platforms:
|
ha_platforms:
|
||||||
- diagnostics
|
- diagnostics
|
||||||
- media_player
|
- media_player
|
||||||
|
- remote
|
||||||
- sensor
|
- sensor
|
||||||
ha_integration_type: service
|
ha_integration_type: service
|
||||||
---
|
---
|
||||||
@ -28,6 +30,24 @@ server as a media player in Home Assistant to provide media controls for each se
|
|||||||
Browsing media inside Home Assistant in a player's context provides all libraries
|
Browsing media inside Home Assistant in a player's context provides all libraries
|
||||||
of type Movie and Series.
|
of type Movie and Series.
|
||||||
|
|
||||||
|
This integration also creates a `Remote` entity for sending [remote commands](https://github.com/jellyfin/jellyfin/blob/master/MediaBrowser.Model/Session/GeneralCommandType.cs) to the client, if supported. For example, this can be used to tell the client to navigate right twice, down once, and select the focused item:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
jellyfin_remote_script:
|
||||||
|
alias: "Jellyfin Remote Script"
|
||||||
|
sequence:
|
||||||
|
- action: remote.send_command
|
||||||
|
target:
|
||||||
|
entity_id: remote.jellyfin_client
|
||||||
|
data:
|
||||||
|
delay_secs: 1.5
|
||||||
|
command:
|
||||||
|
- MoveRight
|
||||||
|
- MoveRight
|
||||||
|
- MoveDown
|
||||||
|
- Select
|
||||||
|
```
|
||||||
|
|
||||||
{% include integrations/config_flow.md %}
|
{% include integrations/config_flow.md %}
|
||||||
|
|
||||||
{% configuration_basic %}
|
{% configuration_basic %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user