feat: video player designs

This commit is contained in:
2024-05-22 13:51:23 +01:00
parent 91c0aeb22b
commit 6b6721edbc
22 changed files with 478 additions and 80 deletions

View File

@ -13,8 +13,11 @@ export const MUTED = 10_000 as EventKind;
export const VIDEO_KIND = 34_235 as EventKind;
export const DAY = 60 * 60 * 24;
export const MINUTE = 60;
export const HOUR = 60 * MINUTE;
export const DAY = 24 * HOUR;
export const WEEK = 7 * DAY;
export const MONTH = 30 * DAY;
export enum StreamState {
Live = "live",