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/Jellyfin.Data/Enums/MediaStreamProtocol.cs

21 lines
322 B

using System.ComponentModel;
namespace Jellyfin.Data.Enums;
/// <summary>
/// Media streaming protocol.
/// </summary>
[DefaultValue(Http)]
public enum MediaStreamProtocol
{
/// <summary>
/// HTTP.
/// </summary>
Http = 0,
/// <summary>
/// HTTP Live Streaming.
/// </summary>
Hls = 1
}