Preserve MediaSources metadata for local tracks in playlists to show bitrate

This commit is contained in:
2026-02-03 19:35:39 -05:00
parent a0bbb7cd4c
commit 64ac09becf
3 changed files with 19 additions and 0 deletions

View File

@@ -99,4 +99,10 @@ public class Song
/// 0 = Naturally clean, 1 = Explicit, 2 = Not applicable, 3 = Clean/edited version, 6/7 = Unknown
/// </summary>
public int? ExplicitContentLyrics { get; set; }
/// <summary>
/// Raw Jellyfin metadata (MediaSources, etc.) for local tracks
/// Preserved to maintain bitrate and other technical details
/// </summary>
public Dictionary<string, object?>? JellyfinMetadata { get; set; }
}