Handle error when live view stalls (#11665)

* Handle error when live view stalls

* Manually calculate buffer timeout

* Formatting
This commit is contained in:
Nicolas Mowen
2024-05-31 07:52:42 -06:00
committed by GitHub
parent a3d116e70e
commit 758df09da3
5 changed files with 83 additions and 4 deletions

View File

@@ -30,3 +30,5 @@ export type LiveStreamMetadata = {
producers: LiveProducerMetadata[];
consumers: LiveConsumerMetadata[];
};
export type LivePlayerError = "stalled" | "startup";