mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-28 11:47:00 +00:00
Removed frozen detection
This commit is contained in:
parent
0aa61b2eaa
commit
b1a671c1a0
@ -59,8 +59,6 @@ media_player:
|
|||||||
- platform: plex
|
- platform: plex
|
||||||
entity_namespace: 'plex'
|
entity_namespace: 'plex'
|
||||||
include_non_clients: true
|
include_non_clients: true
|
||||||
max_frozen_playing: 30
|
|
||||||
max_frozen_paused: 60
|
|
||||||
scan_interval: 5
|
scan_interval: 5
|
||||||
show_all_controls: false
|
show_all_controls: false
|
||||||
use_custom_entity_ids: true
|
use_custom_entity_ids: true
|
||||||
@ -68,8 +66,6 @@ media_player:
|
|||||||
```
|
```
|
||||||
- **entity_namespace** (*Optional*): Prefix for entity ID's. Defaults to `null`. Useful when using overlapping components (ex. Apple TV and Plex components when you have Apple TV's you use as Plex clients). Go from _media_player.playroom2_ to _media_player.plex_playroom_
|
- **entity_namespace** (*Optional*): Prefix for entity ID's. Defaults to `null`. Useful when using overlapping components (ex. Apple TV and Plex components when you have Apple TV's you use as Plex clients). Go from _media_player.playroom2_ to _media_player.plex_playroom_
|
||||||
- **include_non_clients** (*Optional*): Display non-recontrollable clients (ex. remote clients, PlexConnect Apple TV's). Defaults to `false`.
|
- **include_non_clients** (*Optional*): Display non-recontrollable clients (ex. remote clients, PlexConnect Apple TV's). Defaults to `false`.
|
||||||
- **max_frozen_playing** (*Optional*): Forces a "playing" device to become "paused" when the playing position hasn't moved in x time. Defaults to `60` seconds. Useful for disconnected sessions (ex. Streaming iPhone user locks their phone, streaming laptop user closes their browser). Note: This only changes client state, it does not issue any commands to the client (incase they are trying to reconnect).
|
|
||||||
- **max_frozen_paused** (*Optional*): Similar to `max_frozen_playing`, forces a "paused" device to become "idle" when the playing position hasn't moved in x time. Defaults to `300` seconds.
|
|
||||||
- **scan_interval** (*Optional*): Amount in seconds in between polling for device’s current activity. Defaults to `10` seconds.
|
- **scan_interval** (*Optional*): Amount in seconds in between polling for device’s current activity. Defaults to `10` seconds.
|
||||||
- **show_all_controls** (*Optional*): Forces all controls to display. Defaults to `false`. Ignores dynamic controls (ex. show volume controls for client A but not for client B) based on detected client capabilities. This option allows you to override this detection if you suspect it to be incorrect.
|
- **show_all_controls** (*Optional*): Forces all controls to display. Defaults to `false`. Ignores dynamic controls (ex. show volume controls for client A but not for client B) based on detected client capabilities. This option allows you to override this detection if you suspect it to be incorrect.
|
||||||
- **use_custom_entity_ids** (*Optional*): Name Entity ID's by client ID's instead of friendly names. Defaults to `false`. HA assigns entity ID's on a first come first serve basis. When you have identically named devices connecting (ex. media_player.plex_web_safari, media_player.plex_web_safari2), you can't reliably distinguish and or predict which device is which. This option avoids this issue by using unique client ID's (ex. media_player.dy4hdna2drhn).
|
- **use_custom_entity_ids** (*Optional*): Name Entity ID's by client ID's instead of friendly names. Defaults to `false`. HA assigns entity ID's on a first come first serve basis. When you have identically named devices connecting (ex. media_player.plex_web_safari, media_player.plex_web_safari2), you can't reliably distinguish and or predict which device is which. This option avoids this issue by using unique client ID's (ex. media_player.dy4hdna2drhn).
|
||||||
|
Loading…
x
Reference in New Issue
Block a user