aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/StreamingDtos/StreamingRequestDto.cs
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2022-01-20 08:54:40 -0700
committerGitHub <noreply@github.com>2022-01-20 08:54:40 -0700
commit34ee6d82fb38b553d0ccd192fb7b2acfe2433c16 (patch)
tree1dd8c39e69302a13adbed2f8415a01ea62434a07 /Jellyfin.Api/Models/StreamingDtos/StreamingRequestDto.cs
parenta4246648f4b4d9df89da4830a7e7b49770eddc02 (diff)
parent90736ee346e1e78095667d060826c22e57525bb3 (diff)
Merge pull request #6600 from cvium/keyframe_extraction_v1
Diffstat (limited to 'Jellyfin.Api/Models/StreamingDtos/StreamingRequestDto.cs')
-rw-r--r--Jellyfin.Api/Models/StreamingDtos/StreamingRequestDto.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Jellyfin.Api/Models/StreamingDtos/StreamingRequestDto.cs b/Jellyfin.Api/Models/StreamingDtos/StreamingRequestDto.cs
index 1791b0370..f8b0212b6 100644
--- a/Jellyfin.Api/Models/StreamingDtos/StreamingRequestDto.cs
+++ b/Jellyfin.Api/Models/StreamingDtos/StreamingRequestDto.cs
@@ -41,5 +41,15 @@ namespace Jellyfin.Api.Models.StreamingDtos
/// 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; }
}
}