namespace Jellyfin.Data.Entities; /// /// Enum MediaStreamType. /// public enum MediaStreamTypeEntity { /// /// The audio. /// Audio = 0, /// /// The video. /// Video = 1, /// /// The subtitle. /// Subtitle = 2, /// /// The embedded image. /// EmbeddedImage = 3, /// /// The data. /// Data = 4, /// /// The lyric. /// Lyric = 5 }