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

25 lines
501 B

6 years ago
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
}
}