StreamingRequestDto.cs 1.2 KB

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