From fc2faafc103e0048401d7359b7c2f8705907eaa7 Mon Sep 17 00:00:00 2001 From: 7illusions Date: Wed, 19 Feb 2014 09:33:03 +0100 Subject: [PATCH] Added DLNA headers for .ts and .mpeg Fixes transcoding for Samsung TV's --- .../Progressive/BaseProgressiveStreamingService.cs | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/MediaBrowser.Api/Playback/Progressive/BaseProgressiveStreamingService.cs b/MediaBrowser.Api/Playback/Progressive/BaseProgressiveStreamingService.cs index b8decb5068..960424373c 100644 --- a/MediaBrowser.Api/Playback/Progressive/BaseProgressiveStreamingService.cs +++ b/MediaBrowser.Api/Playback/Progressive/BaseProgressiveStreamingService.cs @@ -146,10 +146,14 @@ namespace MediaBrowser.Api.Playback.Progressive { contentFeatures = "DLNA.ORG_PN=AVC_MP4_MP_HD_720p_AAC"; } - //else if (string.Equals(extension, ".mpeg", StringComparison.OrdinalIgnoreCase)) - //{ - // contentFeatures = "DLNA.ORG_PN=MPEG_PS_PAL"; - //} + else if (string.Equals(extension, ".mpeg", StringComparison.OrdinalIgnoreCase)) + { + contentFeatures = "DLNA.ORG_PN=MPEG_PS_PAL"; + } + else if (string.Equals(extension, ".ts", StringComparison.OrdinalIgnoreCase)) + { + contentFeatures = "DLNA.ORG_PN=MPEG_PS_PAL"; + } //else if (string.Equals(extension, ".wmv", StringComparison.OrdinalIgnoreCase)) //{ // contentFeatures = "DLNA.ORG_PN=WMVHIGH_BASE";