diff options
| author | Stephen Maunder <snazy2000@btinternet.com> | 2014-06-30 07:23:18 +0100 |
|---|---|---|
| committer | Stephen Maunder <snazy2000@btinternet.com> | 2014-06-30 07:23:18 +0100 |
| commit | 42a825808133ad1aea344c86aac9ee1aacbb2e5b (patch) | |
| tree | e96217277d1c621822296d44f248fc2f61d5a7e8 | |
| parent | 2a9e4778124de3103bd4a50f806a3694b57d3c6a (diff) | |
Fix RTMP issue for ITV channel.
| -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"; |
