diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-19 16:03:14 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-19 16:03:14 -0400 |
| commit | 631b7b62c1eb4b233ac39ac32f5152f2b51f8e9f (patch) | |
| tree | bb9f1cfee4eaf90273bd143d4955c778632c95b1 /MediaBrowser.Api/Playback/Hls/VideoHlsService.cs | |
| parent | 088df67fcadd75d0da40f4e252a6d6bcc47c7274 (diff) | |
added ControllableByUserId to sessions url
Diffstat (limited to 'MediaBrowser.Api/Playback/Hls/VideoHlsService.cs')
| -rw-r--r-- | MediaBrowser.Api/Playback/Hls/VideoHlsService.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs b/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs index 7674fe7b7..901b27688 100644 --- a/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs +++ b/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs @@ -21,6 +21,14 @@ namespace MediaBrowser.Api.Playback.Hls [ApiMember(Name = "AppendBaselineStream", Description = "Optional. Whether or not to include a baseline audio-only stream in the master playlist.", IsRequired = false, DataType = "bool", ParameterType = "query", Verb = "GET")] public bool AppendBaselineStream { get; set; } + + [ApiMember(Name = "TimeStampOffsetMs", Description = "Optional. Alter the timestamps in the playlist by a given amount, in ms. Default is 1000.", IsRequired = false, DataType = "int", ParameterType = "query", Verb = "GET")] + public int TimeStampOffsetMs { get; set; } + + public GetHlsVideoStream() + { + TimeStampOffsetMs = 1000; + } } /// <summary> |
