Automatically mute if autoplay is blocked.

This commit is contained in:
Dermot Duffy
2023-02-18 14:28:59 -08:00
parent bae115bf5d
commit 732099b6d0
11 changed files with 103 additions and 174 deletions
+2 -1
View File
@@ -1347,10 +1347,11 @@ export interface StateParameters {
}
export interface FrigateCardMediaPlayer {
play(): void;
play(): Promise<void>;
pause(): void;
mute(): void;
unmute(): void;
isMuted(): boolean;
seek(seconds: number): void;
}