diff options
| author | Luke <luke.pulverenti@gmail.com> | 2014-06-30 12:07:14 -0400 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2014-06-30 12:07:14 -0400 |
| commit | f526a07edd13866644dbbee05a6caec85c3e10e1 (patch) | |
| tree | 48ee6d75519acdc8a2c02673aa15c322aa9f5437 | |
| parent | f0da58a997ed01635225ae5290d7f34997b99452 (diff) | |
| parent | 42a825808133ad1aea344c86aac9ee1aacbb2e5b (diff) | |
Merge pull request #858 from snazy2000/master
Fix RTMP issue
| -rw-r--r-- | MediaBrowser.Api/Playback/BaseStreamingService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs index bdd1b76d0..1b8234973 100644 --- a/MediaBrowser.Api/Playback/BaseStreamingService.cs +++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs @@ -1417,6 +1417,7 @@ namespace MediaBrowser.Api.Playback List<MediaStream> mediaStreams = null; state.ItemType = item.GetType().Name; + state.ReadInputAtNativeFramerate = true; if (item is ILiveTvRecording) { @@ -1478,7 +1479,6 @@ namespace MediaBrowser.Api.Playback state.IsInputVideo = string.Equals(channel.MediaType, MediaType.Video, StringComparison.OrdinalIgnoreCase); mediaStreams = new List<MediaStream>(); - state.ReadInputAtNativeFramerate = true; state.OutputAudioSync = "1000"; state.DeInterlace = true; state.InputVideoSync = "-1"; |
