1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-25 05:26:47 +00:00

Add state buffering to media_player and use it in cast (#70802)

This commit is contained in:
Erik Montnemery
2022-04-27 09:49:50 +02:00
committed by GitHub
parent 4a46fd9559
commit 66551e6fcb
3 changed files with 39 additions and 10 deletions

View File

@@ -323,6 +323,7 @@ STATE_OPEN: Final = "open"
STATE_OPENING: Final = "opening"
STATE_CLOSED: Final = "closed"
STATE_CLOSING: Final = "closing"
STATE_BUFFERING: Final = "buffering"
STATE_PLAYING: Final = "playing"
STATE_PAUSED: Final = "paused"
STATE_IDLE: Final = "idle"