feat(media-server): add stats for nerds (#4170)

This commit is contained in:
Meier Lukas
2025-10-02 19:54:53 +02:00
committed by GitHub
parent dcb845b609
commit 6e93c3b608
7 changed files with 133 additions and 5 deletions

View File

@@ -13,6 +13,30 @@ export interface StreamSession {
episodeName?: string | null;
albumName?: string | null;
episodeCount?: number | null;
metadata: {
video: {
resolution: {
width: number;
height: number;
} | null;
frameRate: number | null;
};
audio: {
channelCount: number | null;
codec: string | null;
};
transcoding: {
container: string | null;
resolution: {
width: number;
height: number;
} | null;
target: {
audioCodec: string | null;
videoCodec: string | null;
};
};
} | null;
} | null;
}