From 42a825808133ad1aea344c86aac9ee1aacbb2e5b Mon Sep 17 00:00:00 2001 From: Stephen Maunder Date: Mon, 30 Jun 2014 07:23:18 +0100 Subject: [PATCH] Fix RTMP issue for ITV channel. --- MediaBrowser.Api/Playback/BaseStreamingService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs index bdd1b76d07..1b82349734 100644 --- a/MediaBrowser.Api/Playback/BaseStreamingService.cs +++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs @@ -1417,6 +1417,7 @@ namespace MediaBrowser.Api.Playback List 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(); - state.ReadInputAtNativeFramerate = true; state.OutputAudioSync = "1000"; state.DeInterlace = true; state.InputVideoSync = "-1";