12 lines
259 B
C#
12 lines
259 B
C#
namespace ErsatzTV.Core.Domain
|
|
{
|
|
public enum StreamingMode
|
|
{
|
|
TransportStream = 1,
|
|
HttpLiveStreamingDirect = 2,
|
|
// HttpLiveStreamingHybrid = 3,
|
|
HttpLiveStreamingSegmenter = 4,
|
|
TransportStreamHybrid = 5
|
|
}
|
|
}
|