diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-11-10 22:41:55 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-11-10 22:41:55 -0500 |
| commit | 1fea9ad926801c85f436e34a8756bfdc41a43a0d (patch) | |
| tree | c7c9487320cfdccbf210d9d01b28685d9bf110db /MediaBrowser.Api/Playback/StreamState.cs | |
| parent | 4d0a47e5555e4b04967c679dd4e54e937a0bd7ca (diff) | |
fixes #945 - Add genre views to dlna
Diffstat (limited to 'MediaBrowser.Api/Playback/StreamState.cs')
| -rw-r--r-- | MediaBrowser.Api/Playback/StreamState.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/MediaBrowser.Api/Playback/StreamState.cs b/MediaBrowser.Api/Playback/StreamState.cs index b6423ed2f..d26259a3a 100644 --- a/MediaBrowser.Api/Playback/StreamState.cs +++ b/MediaBrowser.Api/Playback/StreamState.cs @@ -63,11 +63,14 @@ namespace MediaBrowser.Api.Playback public string LiveTvStreamId { get; set; } - public int SegmentLength = 10; + public int SegmentLength = 6; public int HlsListSize { - get { return ReadInputAtNativeFramerate ? 100 : 1440; } + get + { + return ReadInputAtNativeFramerate ? 1000 : 0; + } } public long? RunTimeTicks; |
