Class Broadcast.HlsSettings
Represents HLS-specific settings.
public record Broadcast.HlsSettings : IEquatable<Broadcast.HlsSettings>
- Inheritance
-
Broadcast.HlsSettings
- Implements
- Inherited Members
Constructors
HlsSettings(bool, bool)
Represents HLS-specific settings.
public HlsSettings(bool Dvr, bool LowLatency)
Parameters
DvrboolWhether to enable DVR functionality (rewinding, pausing, and resuming) in players that support it.
LowLatencyboolWhether to enable low-latency mode for the HLS stream. This feature is incompatible with DVR mode.
Properties
Dvr
Whether to enable DVR functionality (rewinding, pausing, and resuming) in players that support it.
public bool Dvr { get; init; }
Property Value
LowLatency
Whether to enable low-latency mode for the HLS stream. This feature is incompatible with DVR mode.
public bool LowLatency { get; init; }