StreamingRequestDto.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using MediaBrowser.Controller.MediaEncoding;
  2. namespace MediaBrowser.Controller.Streaming;
  3. /// <summary>
  4. /// The audio streaming request dto.
  5. /// </summary>
  6. public class StreamingRequestDto : BaseEncodingJobOptions
  7. {
  8. /// <summary>
  9. /// Gets or sets the params.
  10. /// </summary>
  11. public string? Params { get; set; }
  12. /// <summary>
  13. /// Gets or sets the play session id.
  14. /// </summary>
  15. public string? PlaySessionId { get; set; }
  16. /// <summary>
  17. /// Gets or sets the tag.
  18. /// </summary>
  19. public string? Tag { get; set; }
  20. /// <summary>
  21. /// Gets or sets the segment container.
  22. /// </summary>
  23. public string? SegmentContainer { get; set; }
  24. /// <summary>
  25. /// Gets or sets the segment length.
  26. /// </summary>
  27. public int? SegmentLength { get; set; }
  28. /// <summary>
  29. /// Gets or sets the min segments.
  30. /// </summary>
  31. public int? MinSegments { get; set; }
  32. /// <summary>
  33. /// Gets or sets the position of the requested segment in ticks.
  34. /// </summary>
  35. public long CurrentRuntimeTicks { get; set; }
  36. /// <summary>
  37. /// Gets or sets the actual segment length in ticks.
  38. /// </summary>
  39. public long ActualSegmentLengthTicks { get; set; }
  40. }