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

29 lines
510 B

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