From 29000465313cd32b501a2f0353129e2fa1e73b43 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 21 Mar 2015 12:12:40 -0400 Subject: [PATCH] update dlna profiles --- MediaBrowser.Dlna/MediaBrowser.Dlna.csproj | 2 - .../Profiles/Windows81Profile.cs | 219 ---------------- .../Profiles/WindowsPhoneProfile.cs | 239 ------------------ MediaBrowser.Dlna/Profiles/Xml/Default.xml | 14 +- MediaBrowser.Dlna/Profiles/Xml/Denon AVR.xml | 14 +- .../Profiles/Xml/DirecTV HD-DVR.xml | 14 +- .../Profiles/Xml/Dish Hopper-Joey.xml | 14 +- .../Profiles/Xml/LG Smart TV.xml | 14 +- .../Profiles/Xml/Linksys DMA2100.xml | 14 +- .../Profiles/Xml/MediaMonkey.xml | 14 +- .../Profiles/Xml/Panasonic Viera.xml | 14 +- .../Profiles/Xml/Popcorn Hour.xml | 14 +- .../Profiles/Xml/Samsung Smart TV.xml | 14 +- .../Profiles/Xml/Sony Blu-ray Player 2013.xml | 8 +- .../Profiles/Xml/Sony Blu-ray Player.xml | 8 +- .../Profiles/Xml/Sony Bravia (2010).xml | 4 +- .../Profiles/Xml/Sony Bravia (2011).xml | 4 +- .../Profiles/Xml/Sony Bravia (2012).xml | 4 +- .../Profiles/Xml/Sony Bravia (2013).xml | 4 +- .../Profiles/Xml/Sony PlayStation 3.xml | 14 +- MediaBrowser.Dlna/Profiles/Xml/WDTV Live.xml | 14 +- MediaBrowser.Dlna/Profiles/Xml/Xbox 360.xml | 2 +- MediaBrowser.Dlna/Profiles/Xml/Xbox One.xml | 14 +- MediaBrowser.Dlna/Profiles/Xml/foobar2000.xml | 14 +- 24 files changed, 115 insertions(+), 575 deletions(-) delete mode 100644 MediaBrowser.Dlna/Profiles/Windows81Profile.cs delete mode 100644 MediaBrowser.Dlna/Profiles/WindowsPhoneProfile.cs diff --git a/MediaBrowser.Dlna/MediaBrowser.Dlna.csproj b/MediaBrowser.Dlna/MediaBrowser.Dlna.csproj index aed4ef4219..2f4d444188 100644 --- a/MediaBrowser.Dlna/MediaBrowser.Dlna.csproj +++ b/MediaBrowser.Dlna/MediaBrowser.Dlna.csproj @@ -94,9 +94,7 @@ - - diff --git a/MediaBrowser.Dlna/Profiles/Windows81Profile.cs b/MediaBrowser.Dlna/Profiles/Windows81Profile.cs deleted file mode 100644 index cf7790c525..0000000000 --- a/MediaBrowser.Dlna/Profiles/Windows81Profile.cs +++ /dev/null @@ -1,219 +0,0 @@ -using MediaBrowser.Model.Dlna; -using MediaBrowser.Model.Dlna.Profiles; -using System.Xml.Serialization; - -namespace MediaBrowser.Dlna.Profiles -{ - [XmlRoot("Profile")] - public class Windows81Profile : DefaultProfile - { - public Windows81Profile() - { - Name = "Windows 8/RT"; - - Identification = new DeviceIdentification - { - Manufacturer = "Microsoft SDK Customer" - }; - - TranscodingProfiles = new[] - { - new TranscodingProfile - { - Container = "mp3", - AudioCodec = "mp3", - Type = DlnaProfileType.Audio, - Context = EncodingContext.Streaming - }, - new TranscodingProfile - { - Container = "mp3", - AudioCodec = "mp3", - Type = DlnaProfileType.Audio, - Context = EncodingContext.Static - }, - new TranscodingProfile - { - Protocol = "hls", - Container = "ts", - VideoCodec = "h264", - AudioCodec = "aac", - Type = DlnaProfileType.Video, - Context = EncodingContext.Streaming - }, - new TranscodingProfile - { - Container = "ts", - VideoCodec = "h264", - AudioCodec = "aac", - Type = DlnaProfileType.Video, - Context = EncodingContext.Streaming - }, - new TranscodingProfile - { - Container = "mp4", - VideoCodec = "h264", - AudioCodec = "aac,ac3,eac3", - Type = DlnaProfileType.Video, - Context = EncodingContext.Static - } - }; - - DirectPlayProfiles = new[] - { - new DirectPlayProfile - { - Container = "mp4,mov", - VideoCodec = "h264,mpeg4", - AudioCodec = "aac,ac3,eac3,mp3,pcm", - Type = DlnaProfileType.Video - }, - - new DirectPlayProfile - { - Container = "ts", - VideoCodec = "h264", - AudioCodec = "aac,ac3,eac3,mp3,mp2,pcm", - Type = DlnaProfileType.Video - }, - - new DirectPlayProfile - { - Container = "asf", - VideoCodec = "wmv2,wmv3,vc1", - AudioCodec = "wmav2,wmapro,wmavoice", - Type = DlnaProfileType.Video - }, - - new DirectPlayProfile - { - Container = "avi", - VideoCodec = "mpeg4,msmpeg4,mjpeg", - AudioCodec = "mp3,ac3,eac3,mp2,pcm", - Type = DlnaProfileType.Video - }, - - new DirectPlayProfile - { - Container = "mp4", - AudioCodec = "aac", - Type = DlnaProfileType.Audio - }, - - new DirectPlayProfile - { - Container = "mp3", - AudioCodec = "mp3", - Type = DlnaProfileType.Audio - }, - - new DirectPlayProfile - { - Container = "m4a", - AudioCodec = "aac", - VideoCodec = "", - Type = DlnaProfileType.Audio - }, - - new DirectPlayProfile - { - Container = "jpeg", - Type = DlnaProfileType.Photo - } - }; - - CodecProfiles = new[] - { - new CodecProfile - { - Type = CodecType.Video, - Codec="h264", - Conditions = new [] - { - - // Note: Add any of the following if supported - - //"Constrained Baseline", - //"Baseline", - //"Extended", - //"Main", - //"High", - //"Progressive High", - //"Constrained High" - - // The first one in the list should be the higest one, e.g. if High profile is supported, make sure it appears before baseline: high|baseline - - new ProfileCondition(ProfileConditionType.EqualsAny, ProfileConditionValue.VideoProfile, "high|main|extended|baseline|constrained baseline"), - new ProfileCondition - { - Condition = ProfileConditionType.LessThanEqual, - Property = ProfileConditionValue.VideoLevel, - Value = "51" - }, - new ProfileCondition - { - Condition = ProfileConditionType.LessThanEqual, - Property = ProfileConditionValue.VideoBitDepth, - Value = "8", - IsRequired = false - } - } - }, - - new CodecProfile - { - Type = CodecType.Video, - Conditions = new [] - { - new ProfileCondition - { - Condition = ProfileConditionType.LessThanEqual, - Property = ProfileConditionValue.VideoBitDepth, - Value = "8", - IsRequired = false - } - } - }, - - new CodecProfile - { - Type = CodecType.VideoAudio, - Codec = "aac,eac3", - Conditions = new [] - { - new ProfileCondition - { - Condition = ProfileConditionType.LessThanEqual, - Property = ProfileConditionValue.AudioChannels, - Value = "8" - } - } - }, - - new CodecProfile - { - Type = CodecType.VideoAudio, - Codec = "ac3", - Conditions = new [] - { - new ProfileCondition - { - Condition = ProfileConditionType.LessThanEqual, - Property = ProfileConditionValue.AudioChannels, - Value = "6" - } - } - } - }; - - SubtitleProfiles = new[] - { - new SubtitleProfile - { - Format = "vtt", - Method = SubtitleDeliveryMethod.External - } - }; - } - } -} diff --git a/MediaBrowser.Dlna/Profiles/WindowsPhoneProfile.cs b/MediaBrowser.Dlna/Profiles/WindowsPhoneProfile.cs deleted file mode 100644 index 3a0ec1576a..0000000000 --- a/MediaBrowser.Dlna/Profiles/WindowsPhoneProfile.cs +++ /dev/null @@ -1,239 +0,0 @@ -using MediaBrowser.Model.Dlna; -using MediaBrowser.Model.Dlna.Profiles; -using System.Xml.Serialization; - -namespace MediaBrowser.Dlna.Profiles -{ - [XmlRoot("Profile")] - public class WindowsPhoneProfile : DefaultProfile - { - public WindowsPhoneProfile() - { - Name = "Windows Phone"; - - TranscodingProfiles = new[] - { - new TranscodingProfile - { - Container = "mp3", - AudioCodec = "mp3", - Type = DlnaProfileType.Audio, - Context = EncodingContext.Streaming - }, - new TranscodingProfile - { - Container = "mp3", - AudioCodec = "mp3", - Type = DlnaProfileType.Audio, - Context = EncodingContext.Static - }, - new TranscodingProfile - { - Protocol = "hls", - Container = "ts", - VideoCodec = "h264", - AudioCodec = "aac", - Type = DlnaProfileType.Video, - Context = EncodingContext.Streaming - }, - new TranscodingProfile - { - Container = "mp4", - VideoCodec = "h264", - AudioCodec = "aac", - Type = DlnaProfileType.Video, - Context = EncodingContext.Streaming - }, - new TranscodingProfile - { - Container = "mp4", - VideoCodec = "h264", - AudioCodec = "aac", - Type = DlnaProfileType.Video, - Context = EncodingContext.Static - } - }; - - DirectPlayProfiles = new[] - { - new DirectPlayProfile - { - Container = "mp4,mov", - VideoCodec = "h264", - AudioCodec = "aac,mp3", - Type = DlnaProfileType.Video - }, - - new DirectPlayProfile - { - Container = "mp4,avi", - VideoCodec = "mpeg4,msmpeg4", - AudioCodec = "aac,mp3", - Type = DlnaProfileType.Video - }, - - new DirectPlayProfile - { - Container = "asf", - VideoCodec = "wmv2,wmv3,vc1", - AudioCodec = "wmav2,wmapro,wmavoice", - Type = DlnaProfileType.Video - }, - - new DirectPlayProfile - { - Container = "asf", - AudioCodec = "wmav2,wmapro,wmavoice", - Type = DlnaProfileType.Audio - }, - - new DirectPlayProfile - { - Container = "mp4,aac", - AudioCodec = "aac", - Type = DlnaProfileType.Audio - }, - - new DirectPlayProfile - { - Container = "mp3", - AudioCodec = "mp3", - Type = DlnaProfileType.Audio - }, - - new DirectPlayProfile - { - Container = "jpeg,png,gif,bmp", - Type = DlnaProfileType.Photo - } - }; - - CodecProfiles = new[] - { - new CodecProfile - { - Type = CodecType.Video, - Codec="h264", - Conditions = new [] - { - new ProfileCondition - { - Condition = ProfileConditionType.LessThanEqual, - Property = ProfileConditionValue.Width, - Value = "800" - }, - new ProfileCondition - { - Condition = ProfileConditionType.LessThanEqual, - Property = ProfileConditionValue.Height, - Value = "480" - }, - new ProfileCondition - { - Condition = ProfileConditionType.LessThanEqual, - Property = ProfileConditionValue.VideoBitrate, - Value = "1000000", - IsRequired = false - }, - new ProfileCondition - { - Condition = ProfileConditionType.LessThanEqual, - Property = ProfileConditionValue.VideoFramerate, - Value = "24", - IsRequired = false - }, - new ProfileCondition - { - Condition = ProfileConditionType.LessThanEqual, - Property = ProfileConditionValue.VideoLevel, - Value = "3" - }, - new ProfileCondition(ProfileConditionType.EqualsAny, ProfileConditionValue.VideoProfile, "baseline|constrained baseline"), - new ProfileCondition - { - Condition = ProfileConditionType.NotEquals, - Property = ProfileConditionValue.IsAnamorphic, - Value = "true" - } - } - }, - - new CodecProfile - { - Type = CodecType.Video, - Conditions = new [] - { - new ProfileCondition - { - Condition = ProfileConditionType.LessThanEqual, - Property = ProfileConditionValue.Width, - Value = "800" - }, - new ProfileCondition - { - Condition = ProfileConditionType.LessThanEqual, - Property = ProfileConditionValue.Height, - Value = "480" - }, - new ProfileCondition - { - Condition = ProfileConditionType.LessThanEqual, - Property = ProfileConditionValue.VideoBitrate, - Value = "1000000", - IsRequired = false - }, - new ProfileCondition - { - Condition = ProfileConditionType.LessThanEqual, - Property = ProfileConditionValue.VideoFramerate, - Value = "24", - IsRequired = false - }, - new ProfileCondition - { - Condition = ProfileConditionType.NotEquals, - Property = ProfileConditionValue.IsAnamorphic, - Value = "true" - } - } - }, - - new CodecProfile - { - Type = CodecType.VideoAudio, - Conditions = new [] - { - new ProfileCondition - { - Condition = ProfileConditionType.LessThanEqual, - Property = ProfileConditionValue.AudioBitrate, - Value = "128000" - }, - - new ProfileCondition - { - Condition = ProfileConditionType.LessThanEqual, - Property = ProfileConditionValue.AudioChannels, - Value = "2" - } - } - }, - - new CodecProfile - { - Type = CodecType.Audio, - Conditions = new [] - { - new ProfileCondition - { - Condition = ProfileConditionType.LessThanEqual, - Property = ProfileConditionValue.AudioBitrate, - Value = "128000" - } - } - } - }; - - } - } -} diff --git a/MediaBrowser.Dlna/Profiles/Xml/Default.xml b/MediaBrowser.Dlna/Profiles/Xml/Default.xml index 7062afc69a..3c1fbfb1b7 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Default.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Default.xml @@ -1,13 +1,13 @@ Generic Device - Media Browser - Media Browser - http://mediabrowser.tv/ - Media Browser - Media Browser - Media Browser - http://mediabrowser.tv/ + Emby + Emby + http://emby.media/ + Emby + Emby + Emby + http://emby.media/ false false false diff --git a/MediaBrowser.Dlna/Profiles/Xml/Denon AVR.xml b/MediaBrowser.Dlna/Profiles/Xml/Denon AVR.xml index 9ff1ae8336..2fde800089 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Denon AVR.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Denon AVR.xml @@ -6,13 +6,13 @@ Denon - Media Browser - Media Browser - http://mediabrowser.tv/ - Media Browser - Media Browser - Media Browser - http://mediabrowser.tv/ + Emby + Emby + http://emby.media/ + Emby + Emby + Emby + http://emby.media/ false false false diff --git a/MediaBrowser.Dlna/Profiles/Xml/DirecTV HD-DVR.xml b/MediaBrowser.Dlna/Profiles/Xml/DirecTV HD-DVR.xml index 746b7f5c40..7876ccc7c5 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/DirecTV HD-DVR.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/DirecTV HD-DVR.xml @@ -7,13 +7,13 @@ - Media Browser - Media Browser - http://mediabrowser.tv/ - Media Browser - Media Browser - Media Browser - http://mediabrowser.tv/ + Emby + Emby + http://emby.media/ + Emby + Emby + Emby + http://emby.media/ false false false diff --git a/MediaBrowser.Dlna/Profiles/Xml/Dish Hopper-Joey.xml b/MediaBrowser.Dlna/Profiles/Xml/Dish Hopper-Joey.xml index 4a70e3d4c5..d7ad1ac301 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Dish Hopper-Joey.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Dish Hopper-Joey.xml @@ -8,13 +8,13 @@ - Media Browser - Media Browser - http://mediabrowser.tv/ - Media Browser - Media Browser - Media Browser - http://mediabrowser.tv/ + Emby + Emby + http://emby.media/ + Emby + Emby + Emby + http://emby.media/ false false false diff --git a/MediaBrowser.Dlna/Profiles/Xml/LG Smart TV.xml b/MediaBrowser.Dlna/Profiles/Xml/LG Smart TV.xml index 471917a13f..a2fc002e51 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/LG Smart TV.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/LG Smart TV.xml @@ -7,13 +7,13 @@ - Media Browser - Media Browser - http://mediabrowser.tv/ - Media Browser - Media Browser - Media Browser - http://mediabrowser.tv/ + Emby + Emby + http://emby.media/ + Emby + Emby + Emby + http://emby.media/ false false false diff --git a/MediaBrowser.Dlna/Profiles/Xml/Linksys DMA2100.xml b/MediaBrowser.Dlna/Profiles/Xml/Linksys DMA2100.xml index 5fe441945b..a273586bdc 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Linksys DMA2100.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Linksys DMA2100.xml @@ -5,13 +5,13 @@ DMA2100us - Media Browser - Media Browser - http://mediabrowser.tv/ - Media Browser - Media Browser - Media Browser - http://mediabrowser.tv/ + Emby + Emby + http://emby.media/ + Emby + Emby + Emby + http://emby.media/ false false false diff --git a/MediaBrowser.Dlna/Profiles/Xml/MediaMonkey.xml b/MediaBrowser.Dlna/Profiles/Xml/MediaMonkey.xml index 35775892c8..e92b998300 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/MediaMonkey.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/MediaMonkey.xml @@ -7,13 +7,13 @@ - Media Browser - Media Browser - http://mediabrowser.tv/ - Media Browser - Media Browser - Media Browser - http://mediabrowser.tv/ + Emby + Emby + http://emby.media/ + Emby + Emby + Emby + http://emby.media/ false false false diff --git a/MediaBrowser.Dlna/Profiles/Xml/Panasonic Viera.xml b/MediaBrowser.Dlna/Profiles/Xml/Panasonic Viera.xml index 36c5289298..dcc06abb33 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Panasonic Viera.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Panasonic Viera.xml @@ -8,13 +8,13 @@ - Media Browser - Media Browser - http://mediabrowser.tv/ - Media Browser - Media Browser - Media Browser - http://mediabrowser.tv/ + Emby + Emby + http://emby.media/ + Emby + Emby + Emby + http://emby.media/ false false false diff --git a/MediaBrowser.Dlna/Profiles/Xml/Popcorn Hour.xml b/MediaBrowser.Dlna/Profiles/Xml/Popcorn Hour.xml index 0749dbeac7..8470f601ac 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Popcorn Hour.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Popcorn Hour.xml @@ -1,13 +1,13 @@ Popcorn Hour - Media Browser - Media Browser - http://mediabrowser.tv/ - Media Browser - Media Browser - Media Browser - http://mediabrowser.tv/ + Emby + Emby + http://emby.media/ + Emby + Emby + Emby + http://emby.media/ false false false diff --git a/MediaBrowser.Dlna/Profiles/Xml/Samsung Smart TV.xml b/MediaBrowser.Dlna/Profiles/Xml/Samsung Smart TV.xml index 9e61df43ed..d8d2a0b2bb 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Samsung Smart TV.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Samsung Smart TV.xml @@ -7,13 +7,13 @@ - Media Browser - Media Browser - http://mediabrowser.tv/ - Media Browser - Media Browser - Media Browser - http://mediabrowser.tv/ + Emby + Emby + http://emby.media/ + Emby + Emby + Emby + http://emby.media/ false true false diff --git a/MediaBrowser.Dlna/Profiles/Xml/Sony Blu-ray Player 2013.xml b/MediaBrowser.Dlna/Profiles/Xml/Sony Blu-ray Player 2013.xml index 91aa767bee..e4959c0c71 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Sony Blu-ray Player 2013.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Sony Blu-ray Player 2013.xml @@ -7,13 +7,13 @@ Sony - Media Browser + Emby Microsoft Corporation - http://mediabrowser.tv/ + http://emby.media/ Windows Media Player Sharing - Media Browser + Emby 3.0 - http://mediabrowser.tv/ + http://emby.media/ false false false diff --git a/MediaBrowser.Dlna/Profiles/Xml/Sony Blu-ray Player.xml b/MediaBrowser.Dlna/Profiles/Xml/Sony Blu-ray Player.xml index a6ea108408..b46b94c1de 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Sony Blu-ray Player.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Sony Blu-ray Player.xml @@ -9,13 +9,13 @@ - Media Browser + Emby Microsoft Corporation - http://mediabrowser.tv/ + http://emby.media/ Windows Media Player Sharing - Media Browser + Emby 3.0 - http://mediabrowser.tv/ + http://emby.media/ false false false diff --git a/MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2010).xml b/MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2010).xml index 0c3bdc4c5f..ba993ca3e5 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2010).xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2010).xml @@ -8,11 +8,11 @@ - Media Browser + Emby Microsoft Corporation http://www.microsoft.com/ Windows Media Player Sharing - Media Browser + Emby 3.0 http://www.microsoft.com/ false diff --git a/MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2011).xml b/MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2011).xml index 0269c05c16..271cf1132d 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2011).xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2011).xml @@ -8,11 +8,11 @@ - Media Browser + Emby Microsoft Corporation http://www.microsoft.com/ Windows Media Player Sharing - Media Browser + Emby 3.0 http://www.microsoft.com/ false diff --git a/MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2012).xml b/MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2012).xml index 9aa614faae..4f849b7319 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2012).xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2012).xml @@ -8,11 +8,11 @@ - Media Browser + Emby Microsoft Corporation http://www.microsoft.com/ Windows Media Player Sharing - Media Browser + Emby 3.0 http://www.microsoft.com/ false diff --git a/MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2013).xml b/MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2013).xml index 231db2091f..e074b83899 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2013).xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2013).xml @@ -8,11 +8,11 @@ - Media Browser + Emby Microsoft Corporation http://www.microsoft.com/ Windows Media Player Sharing - Media Browser + Emby 3.0 http://www.microsoft.com/ false diff --git a/MediaBrowser.Dlna/Profiles/Xml/Sony PlayStation 3.xml b/MediaBrowser.Dlna/Profiles/Xml/Sony PlayStation 3.xml index 153b66be81..e90d1bc0f0 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Sony PlayStation 3.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Sony PlayStation 3.xml @@ -8,13 +8,13 @@ - Media Browser - Media Browser - http://mediabrowser.tv/ - Media Browser - Media Browser - Media Browser - http://mediabrowser.tv/ + Emby + Emby + http://emby.media/ + Emby + Emby + Emby + http://emby.media/ false false true diff --git a/MediaBrowser.Dlna/Profiles/Xml/WDTV Live.xml b/MediaBrowser.Dlna/Profiles/Xml/WDTV Live.xml index d51669cfb8..3d7e745f8e 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/WDTV Live.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/WDTV Live.xml @@ -8,13 +8,13 @@ - Media Browser - Media Browser - http://mediabrowser.tv/ - Media Browser - Media Browser - Media Browser - http://mediabrowser.tv/ + Emby + Emby + http://emby.media/ + Emby + Emby + Emby + http://emby.media/ true false false diff --git a/MediaBrowser.Dlna/Profiles/Xml/Xbox 360.xml b/MediaBrowser.Dlna/Profiles/Xml/Xbox 360.xml index da55724075..ae0f53edb0 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Xbox 360.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Xbox 360.xml @@ -12,7 +12,7 @@ Microsoft Corporation http://www.microsoft.com/ Windows Media Player Sharing - Media Browser + Emby 12.0 http://www.microsoft.com/ false diff --git a/MediaBrowser.Dlna/Profiles/Xml/Xbox One.xml b/MediaBrowser.Dlna/Profiles/Xml/Xbox One.xml index 063cebebc3..2595ffbdfc 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/Xbox One.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/Xbox One.xml @@ -8,13 +8,13 @@ - Media Browser - Media Browser - http://mediabrowser.tv/ - Media Browser - Media Browser - Media Browser - http://mediabrowser.tv/ + Emby + Emby + http://emby.media/ + Emby + Emby + Emby + http://emby.media/ false false false diff --git a/MediaBrowser.Dlna/Profiles/Xml/foobar2000.xml b/MediaBrowser.Dlna/Profiles/Xml/foobar2000.xml index de7c03c481..1418e63bd5 100644 --- a/MediaBrowser.Dlna/Profiles/Xml/foobar2000.xml +++ b/MediaBrowser.Dlna/Profiles/Xml/foobar2000.xml @@ -7,13 +7,13 @@ - Media Browser - Media Browser - http://mediabrowser.tv/ - Media Browser - Media Browser - Media Browser - http://mediabrowser.tv/ + Emby + Emby + http://emby.media/ + Emby + Emby + Emby + http://emby.media/ false false false