namespace MediaBrowser.Controller.Streaming; /// /// The video request dto. /// public class VideoRequestDto : StreamingRequestDto { /// /// Gets a value indicating whether this instance has fixed resolution. /// /// true if this instance has fixed resolution; otherwise, false. public bool HasFixedResolution => Width.HasValue || Height.HasValue; /// /// Gets or sets a value indicating whether to enable subtitles in the manifest. /// public bool EnableSubtitlesInManifest { get; set; } /// /// Gets or sets a value indicating whether to enable trickplay images. /// public bool EnableTrickplay { get; set; } }