mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using MediaBrowser.Controller.MediaEncoding;
 | 
						|
 | 
						|
namespace Jellyfin.Api.Models.StreamingDtos;
 | 
						|
 | 
						|
/// <summary>
 | 
						|
/// The audio streaming request dto.
 | 
						|
/// </summary>
 | 
						|
public class StreamingRequestDto : BaseEncodingJobOptions
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Gets or sets the device profile.
 | 
						|
    /// </summary>
 | 
						|
    public string? DeviceProfileId { get; set; }
 | 
						|
 | 
						|
    /// <summary>
 | 
						|
    /// Gets or sets the params.
 | 
						|
    /// </summary>
 | 
						|
    public string? Params { get; set; }
 | 
						|
 | 
						|
    /// <summary>
 | 
						|
    /// Gets or sets the play session id.
 | 
						|
    /// </summary>
 | 
						|
    public string? PlaySessionId { get; set; }
 | 
						|
 | 
						|
    /// <summary>
 | 
						|
    /// Gets or sets the tag.
 | 
						|
    /// </summary>
 | 
						|
    public string? Tag { get; set; }
 | 
						|
 | 
						|
    /// <summary>
 | 
						|
    /// Gets or sets the segment container.
 | 
						|
    /// </summary>
 | 
						|
    public string? SegmentContainer { get; set; }
 | 
						|
 | 
						|
    /// <summary>
 | 
						|
    /// Gets or sets the segment length.
 | 
						|
    /// </summary>
 | 
						|
    public int? SegmentLength { get; set; }
 | 
						|
 | 
						|
    /// <summary>
 | 
						|
    /// Gets or sets the min segments.
 | 
						|
    /// </summary>
 | 
						|
    public int? MinSegments { get; set; }
 | 
						|
 | 
						|
    /// <summary>
 | 
						|
    /// Gets or sets the position of the requested segment in ticks.
 | 
						|
    /// </summary>
 | 
						|
    public long CurrentRuntimeTicks { get; set; }
 | 
						|
 | 
						|
    /// <summary>
 | 
						|
    /// Gets or sets the actual segment length in ticks.
 | 
						|
    /// </summary>
 | 
						|
    public long ActualSegmentLengthTicks { get; set; }
 | 
						|
}
 |