2
0
Эх сурвалжийг харах

add new sony dlna profiles

Luke Pulverenti 8 жил өмнө
parent
commit
d68e984120
35 өөрчлөгдсөн 210 нэмэгдсэн , 37 устгасан
  1. 4 1
      MediaBrowser.Dlna/DlnaManager.cs
  2. 9 1
      MediaBrowser.Dlna/MediaBrowser.Dlna.csproj
  3. 2 2
      MediaBrowser.Dlna/Profiles/SonyBlurayPlayer2013.cs
  4. 25 0
      MediaBrowser.Dlna/Profiles/SonyBlurayPlayer2014.cs
  5. 25 0
      MediaBrowser.Dlna/Profiles/SonyBlurayPlayer2015.cs
  6. 25 0
      MediaBrowser.Dlna/Profiles/SonyBlurayPlayer2016.cs
  7. 1 1
      MediaBrowser.Dlna/Profiles/Xml/BubbleUPnp.xml
  8. 1 1
      MediaBrowser.Dlna/Profiles/Xml/Default.xml
  9. 1 1
      MediaBrowser.Dlna/Profiles/Xml/Denon AVR.xml
  10. 1 1
      MediaBrowser.Dlna/Profiles/Xml/DirecTV HD-DVR.xml
  11. 4 4
      MediaBrowser.Dlna/Profiles/Xml/Dish Hopper-Joey.xml
  12. 2 2
      MediaBrowser.Dlna/Profiles/Xml/Kodi.xml
  13. 1 1
      MediaBrowser.Dlna/Profiles/Xml/LG Smart TV.xml
  14. 1 1
      MediaBrowser.Dlna/Profiles/Xml/Linksys DMA2100.xml
  15. 1 1
      MediaBrowser.Dlna/Profiles/Xml/MediaMonkey.xml
  16. 1 1
      MediaBrowser.Dlna/Profiles/Xml/Panasonic Viera.xml
  17. 1 1
      MediaBrowser.Dlna/Profiles/Xml/Popcorn Hour.xml
  18. 1 1
      MediaBrowser.Dlna/Profiles/Xml/Samsung Smart TV.xml
  19. 1 1
      MediaBrowser.Dlna/Profiles/Xml/Sony Blu-ray Player 2013.xml
  20. 29 0
      MediaBrowser.Dlna/Profiles/Xml/Sony Blu-ray Player 2014.xml
  21. 29 0
      MediaBrowser.Dlna/Profiles/Xml/Sony Blu-ray Player 2015.xml
  22. 29 0
      MediaBrowser.Dlna/Profiles/Xml/Sony Blu-ray Player 2016.xml
  23. 1 1
      MediaBrowser.Dlna/Profiles/Xml/Sony Blu-ray Player.xml
  24. 4 4
      MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2010).xml
  25. 1 1
      MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2011).xml
  26. 1 1
      MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2012).xml
  27. 1 1
      MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2013).xml
  28. 1 1
      MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2014).xml
  29. 1 1
      MediaBrowser.Dlna/Profiles/Xml/Sony PlayStation 3.xml
  30. 1 1
      MediaBrowser.Dlna/Profiles/Xml/Sony PlayStation 4.xml
  31. 1 1
      MediaBrowser.Dlna/Profiles/Xml/Vlc.xml
  32. 1 1
      MediaBrowser.Dlna/Profiles/Xml/WDTV Live.xml
  33. 1 1
      MediaBrowser.Dlna/Profiles/Xml/Xbox 360.xml
  34. 1 1
      MediaBrowser.Dlna/Profiles/Xml/Xbox One.xml
  35. 1 1
      MediaBrowser.Dlna/Profiles/Xml/foobar2000.xml

+ 4 - 1
MediaBrowser.Dlna/DlnaManager.cs

@@ -566,7 +566,10 @@ namespace MediaBrowser.Dlna
                 new SonyBravia2012Profile(),
                 new SonyBravia2013Profile(),
                 new SonyBravia2014Profile(),
-                new SonyBlurayPlayer2013Profile(),
+                new SonyBlurayPlayer2013(),
+                new SonyBlurayPlayer2014(),
+                new SonyBlurayPlayer2015(),
+                new SonyBlurayPlayer2016(),
                 new SonyBlurayPlayerProfile(),
                 new PanasonicVieraProfile(),
                 new WdtvLiveProfile(),

+ 9 - 1
MediaBrowser.Dlna/MediaBrowser.Dlna.csproj

@@ -94,6 +94,9 @@
     <Compile Include="Profiles\DishHopperJoeyProfile.cs" />
     <Compile Include="Profiles\KodiProfile.cs" />
     <Compile Include="Profiles\PopcornHourProfile.cs" />
+    <Compile Include="Profiles\SonyBlurayPlayer2016.cs" />
+    <Compile Include="Profiles\SonyBlurayPlayer2015.cs" />
+    <Compile Include="Profiles\SonyBlurayPlayer2014.cs" />
     <Compile Include="Profiles\SonyBravia2014Profile.cs" />
     <Compile Include="Profiles\SonyPs4Profile.cs" />
     <Compile Include="Profiles\VlcProfile.cs" />
@@ -137,7 +140,7 @@
     <Compile Include="Profiles\LinksysDMA2100Profile.cs" />
     <Compile Include="Profiles\PanasonicVieraProfile.cs" />
     <Compile Include="Profiles\SamsungSmartTvProfile.cs" />
-    <Compile Include="Profiles\SonyBlurayPlayer2013Profile.cs" />
+    <Compile Include="Profiles\SonyBlurayPlayer2013.cs" />
     <Compile Include="Profiles\SonyBlurayPlayerProfile.cs" />
     <Compile Include="Profiles\SonyBravia2010Profile.cs" />
     <Compile Include="Profiles\SonyBravia2011Profile.cs" />
@@ -244,6 +247,11 @@
   <ItemGroup>
     <None Include="packages.config" />
   </ItemGroup>
+  <ItemGroup>
+    <EmbeddedResource Include="Profiles\Xml\Sony Blu-ray Player 2014.xml" />
+    <EmbeddedResource Include="Profiles\Xml\Sony Blu-ray Player 2015.xml" />
+    <EmbeddedResource Include="Profiles\Xml\Sony Blu-ray Player 2016.xml" />
+  </ItemGroup>
   <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
        Other similar extension points exist, see Microsoft.Common.targets.

+ 2 - 2
MediaBrowser.Dlna/Profiles/SonyBlurayPlayer2013Profile.cs → MediaBrowser.Dlna/Profiles/SonyBlurayPlayer2013.cs

@@ -4,9 +4,9 @@ using System.Xml.Serialization;
 namespace MediaBrowser.Dlna.Profiles
 {
     [XmlRoot("Profile")]
-    public class SonyBlurayPlayer2013Profile : DefaultProfile
+    public class SonyBlurayPlayer2013 : DefaultProfile
     {
-        public SonyBlurayPlayer2013Profile()
+        public SonyBlurayPlayer2013()
         {
             Name = "Sony Blu-ray Player 2013";
 

Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 25 - 0
MediaBrowser.Dlna/Profiles/SonyBlurayPlayer2014.cs


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 25 - 0
MediaBrowser.Dlna/Profiles/SonyBlurayPlayer2015.cs


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 25 - 0
MediaBrowser.Dlna/Profiles/SonyBlurayPlayer2016.cs


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/BubbleUPnp.xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/Default.xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/Denon AVR.xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/DirecTV HD-DVR.xml


+ 4 - 4
MediaBrowser.Dlna/Profiles/Xml/Dish Hopper-Joey.xml

@@ -26,7 +26,7 @@
   <MaxStreamingBitrate>20000000</MaxStreamingBitrate>
   <MaxStaticBitrate>20000000</MaxStaticBitrate>
   <MusicStreamingTranscodingBitrate>192000</MusicStreamingTranscodingBitrate>
-  <MusicSyncBitrate>192000</MusicSyncBitrate>
+  <MaxStaticMusicBitrate xsi:nil="true" />
   <XDlnaDoc>DMS-1.50</XDlnaDoc>
   <ProtocolInfo>http-get:*:video/mp2t:*,http-get:*:video/MP1S:*,http-get:*:video/mpeg2:*,http-get:*:video/mp4:*,http-get:*:video/x-matroska:*,http-get:*:audio/mpeg:*,http-get:*:audio/mpeg3:*,http-get:*:audio/mp3:*,http-get:*:audio/mp4:*,http-get:*:audio/mp4a-latm:*,http-get:*:image/jpeg:*</ProtocolInfo>
   <TimelineOffsetSeconds>0</TimelineOffsetSeconds>
@@ -43,9 +43,9 @@
     <DirectPlayProfile container="jpeg" type="Photo" />
   </DirectPlayProfiles>
   <TranscodingProfiles>
-    <TranscodingProfile container="mp3" type="Audio" audioCodec="mp3" estimateContentLength="false" enableMpegtsM2TsMode="false" transcodeSeekInfo="Auto" copyTimestamps="false" context="Streaming" forceLiveStream="false" enableSubtitlesInManifest="false" />
-    <TranscodingProfile container="mp4" type="Video" videoCodec="h264" audioCodec="aac" estimateContentLength="false" enableMpegtsM2TsMode="false" transcodeSeekInfo="Auto" copyTimestamps="false" context="Streaming" forceLiveStream="false" enableSubtitlesInManifest="false" />
-    <TranscodingProfile container="jpeg" type="Photo" estimateContentLength="false" enableMpegtsM2TsMode="false" transcodeSeekInfo="Auto" copyTimestamps="false" context="Streaming" forceLiveStream="false" enableSubtitlesInManifest="false" />
+    <TranscodingProfile container="mp3" type="Audio" audioCodec="mp3" estimateContentLength="false" enableMpegtsM2TsMode="false" transcodeSeekInfo="Auto" copyTimestamps="false" context="Streaming" enableSubtitlesInManifest="false" />
+    <TranscodingProfile container="mp4" type="Video" videoCodec="h264" audioCodec="aac" estimateContentLength="false" enableMpegtsM2TsMode="false" transcodeSeekInfo="Auto" copyTimestamps="false" context="Streaming" enableSubtitlesInManifest="false" />
+    <TranscodingProfile container="jpeg" type="Photo" estimateContentLength="false" enableMpegtsM2TsMode="false" transcodeSeekInfo="Auto" copyTimestamps="false" context="Streaming" enableSubtitlesInManifest="false" />
   </TranscodingProfiles>
   <ContainerProfiles />
   <CodecProfiles>

Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 2 - 2
MediaBrowser.Dlna/Profiles/Xml/Kodi.xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/LG Smart TV.xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/Linksys DMA2100.xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/MediaMonkey.xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/Panasonic Viera.xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/Popcorn Hour.xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/Samsung Smart TV.xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/Sony Blu-ray Player 2013.xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 29 - 0
MediaBrowser.Dlna/Profiles/Xml/Sony Blu-ray Player 2014.xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 29 - 0
MediaBrowser.Dlna/Profiles/Xml/Sony Blu-ray Player 2015.xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 29 - 0
MediaBrowser.Dlna/Profiles/Xml/Sony Blu-ray Player 2016.xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/Sony Blu-ray Player.xml


+ 4 - 4
MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2010).xml

@@ -26,7 +26,7 @@
   <MaxStreamingBitrate>20000000</MaxStreamingBitrate>
   <MaxStaticBitrate>20000000</MaxStaticBitrate>
   <MusicStreamingTranscodingBitrate>192000</MusicStreamingTranscodingBitrate>
-  <MusicSyncBitrate>192000</MusicSyncBitrate>
+  <MaxStaticMusicBitrate xsi:nil="true" />
   <XDlnaDoc>DMS-1.50</XDlnaDoc>
   <SonyAggregationFlags>10</SonyAggregationFlags>
   <ProtocolInfo>http-get:*:audio/mpeg:DLNA.ORG_PN=MP3;DLNA.ORG_OP=01;DLNA.ORG_FLAGS=81500000000000000000000000000000,http-get:*:image/jpeg:DLNA.ORG_PN=JPEG_SM;DLNA.ORG_OP=00;DLNA.ORG_FLAGS=00D00000000000000000000000000000,http-get:*:video/mpeg:DLNA.ORG_PN=MPEG_PS_PAL;DLNA.ORG_OP=11;DLNA.ORG_FLAGS=81500000000000000000000000000000</ProtocolInfo>
@@ -45,9 +45,9 @@
     <DirectPlayProfile container="mp3" audioCodec="mp3" type="Audio" />
   </DirectPlayProfiles>
   <TranscodingProfiles>
-    <TranscodingProfile container="mp3" type="Audio" audioCodec="mp3" estimateContentLength="false" enableMpegtsM2TsMode="false" transcodeSeekInfo="Auto" copyTimestamps="false" context="Streaming" forceLiveStream="false" enableSubtitlesInManifest="false" />
-    <TranscodingProfile container="ts" type="Video" videoCodec="h264" audioCodec="ac3" estimateContentLength="false" enableMpegtsM2TsMode="true" transcodeSeekInfo="Auto" copyTimestamps="false" context="Streaming" forceLiveStream="false" enableSubtitlesInManifest="false" />
-    <TranscodingProfile container="jpeg" type="Photo" estimateContentLength="false" enableMpegtsM2TsMode="false" transcodeSeekInfo="Auto" copyTimestamps="false" context="Streaming" forceLiveStream="false" enableSubtitlesInManifest="false" />
+    <TranscodingProfile container="mp3" type="Audio" audioCodec="mp3" estimateContentLength="false" enableMpegtsM2TsMode="false" transcodeSeekInfo="Auto" copyTimestamps="false" context="Streaming" enableSubtitlesInManifest="false" />
+    <TranscodingProfile container="ts" type="Video" videoCodec="h264" audioCodec="ac3" estimateContentLength="false" enableMpegtsM2TsMode="true" transcodeSeekInfo="Auto" copyTimestamps="false" context="Streaming" enableSubtitlesInManifest="false" />
+    <TranscodingProfile container="jpeg" type="Photo" estimateContentLength="false" enableMpegtsM2TsMode="false" transcodeSeekInfo="Auto" copyTimestamps="false" context="Streaming" enableSubtitlesInManifest="false" />
   </TranscodingProfiles>
   <ContainerProfiles>
     <ContainerProfile type="Photo">

Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2011).xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2012).xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2013).xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/Sony Bravia (2014).xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/Sony PlayStation 3.xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/Sony PlayStation 4.xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/Vlc.xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/WDTV Live.xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/Xbox 360.xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/Xbox One.xml


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 1
MediaBrowser.Dlna/Profiles/Xml/foobar2000.xml


Энэ ялгаанд хэт олон файл өөрчлөгдсөн тул зарим файлыг харуулаагүй болно