You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Model/Entities/MediaStreamType.cs

39 lines
676 B

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