Files
jellyfin-jellyfin-1/MediaBrowser.Model/Entities/MediaStreamType.cs
2024-02-26 05:09:40 -07:00

39 lines
676 B
C#

namespace MediaBrowser.Model.Entities
{
/// <summary>
/// Enum MediaStreamType.
/// </summary>
public enum MediaStreamType
{
/// <summary>
/// The audio.
/// </summary>
Audio,
/// <summary>
/// The video.
/// </summary>
Video,
/// <summary>
/// The subtitle.
/// </summary>
Subtitle,
/// <summary>
/// The embedded image.
/// </summary>
EmbeddedImage,
/// <summary>
/// The data.
/// </summary>
Data,
/// <summary>
/// The lyric.
/// </summary>
Lyric
}
}