Browse Source

Remove Emby branding from DLNA server

Ben Magee 6 years ago
parent
commit
f7061e353e

+ 3 - 1
Emby.Dlna/Api/DlnaServerService.cs

@@ -224,8 +224,10 @@ namespace Emby.Dlna.Api
             var first = pathInfo[0];
             var first = pathInfo[0];
 
 
             // backwards compatibility
             // backwards compatibility
+            // TODO: Work out what this is doing.
             if (string.Equals(first, "mediabrowser", StringComparison.OrdinalIgnoreCase) ||
             if (string.Equals(first, "mediabrowser", StringComparison.OrdinalIgnoreCase) ||
-                string.Equals(first, "emby", StringComparison.OrdinalIgnoreCase))
+                string.Equals(first, "emby", StringComparison.OrdinalIgnoreCase) ||
+                string.Equals(first, "jellyfin", StringComparison.OrdinalIgnoreCase ))
             {
             {
                 index++;
                 index++;
             }
             }

+ 3 - 3
Emby.Dlna/Main/DlnaEntryPoint.cs

@@ -272,9 +272,9 @@ namespace Emby.Dlna.Main
                 {
                 {
                     CacheLifetime = TimeSpan.FromSeconds(1800), //How long SSDP clients can cache this info.
                     CacheLifetime = TimeSpan.FromSeconds(1800), //How long SSDP clients can cache this info.
                     Location = uri, // Must point to the URL that serves your devices UPnP description document. 
                     Location = uri, // Must point to the URL that serves your devices UPnP description document. 
-                    FriendlyName = "Emby Server",
-                    Manufacturer = "Emby",
-                    ModelName = "Emby Server",
+                    FriendlyName = "Jellyfin",
+                    Manufacturer = "Jellyfin",
+                    ModelName = "Jellyfin Media Player",
                     Uuid = udn
                     Uuid = udn
                     // This must be a globally unique value that survives reboots etc. Get from storage or embedded hardware etc.                
                     // This must be a globally unique value that survives reboots etc. Get from storage or embedded hardware etc.                
                 };
                 };

+ 1 - 1
Emby.Dlna/PlayTo/SsdpHttpClient.cs

@@ -14,7 +14,7 @@ namespace Emby.Dlna.PlayTo
     public class SsdpHttpClient
     public class SsdpHttpClient
     {
     {
         private const string USERAGENT = "Microsoft-Windows/6.2 UPnP/1.0 Microsoft-DLNA DLNADOC/1.50";
         private const string USERAGENT = "Microsoft-Windows/6.2 UPnP/1.0 Microsoft-DLNA DLNADOC/1.50";
-        private const string FriendlyName = "Emby";
+        private const string FriendlyName = "Jellyfin";
 
 
         private readonly IHttpClient _httpClient;
         private readonly IHttpClient _httpClient;
         private readonly IServerConfigurationManager _config;
         private readonly IServerConfigurationManager _config;

+ 2 - 2
Emby.Dlna/Profiles/DefaultProfile.cs

@@ -14,9 +14,9 @@ namespace Emby.Dlna.Profiles
 
 
             ProtocolInfo = "http-get:*:video/mpeg:*,http-get:*:video/mp4:*,http-get:*:video/vnd.dlna.mpeg-tts:*,http-get:*:video/avi:*,http-get:*:video/x-matroska:*,http-get:*:video/x-ms-wmv:*,http-get:*:video/wtv:*,http-get:*:audio/mpeg:*,http-get:*:audio/mp3:*,http-get:*:audio/mp4:*,http-get:*:audio/x-ms-wma*,http-get:*:audio/wav:*,http-get:*:audio/L16:*,http-get:*image/jpeg:*,http-get:*image/png:*,http-get:*image/gif:*,http-get:*image/tiff:*";
             ProtocolInfo = "http-get:*:video/mpeg:*,http-get:*:video/mp4:*,http-get:*:video/vnd.dlna.mpeg-tts:*,http-get:*:video/avi:*,http-get:*:video/x-matroska:*,http-get:*:video/x-ms-wmv:*,http-get:*:video/wtv:*,http-get:*:audio/mpeg:*,http-get:*:audio/mp3:*,http-get:*:audio/mp4:*,http-get:*:audio/x-ms-wma*,http-get:*:audio/wav:*,http-get:*:audio/L16:*,http-get:*image/jpeg:*,http-get:*image/png:*,http-get:*image/gif:*,http-get:*image/tiff:*";
 
 
-            Manufacturer = "Emby";
+            Manufacturer = "Jellyfin";
             ModelDescription = "UPnP/AV 1.0 Compliant Media Server";
             ModelDescription = "UPnP/AV 1.0 Compliant Media Server";
-            ModelName = "Emby Server";
+            ModelName = "Jellyfin Media Player";
             ModelNumber = "01";
             ModelNumber = "01";
             ModelUrl = "https://github.com/jellyfin/jellyfin";
             ModelUrl = "https://github.com/jellyfin/jellyfin";
             ManufacturerUrl = "https://github.com/jellyfin/jellyfin";
             ManufacturerUrl = "https://github.com/jellyfin/jellyfin";

+ 1 - 1
Emby.Dlna/Server/DescriptionXmlBuilder.cs

@@ -217,7 +217,7 @@ namespace Emby.Dlna.Server
         {
         {
             if (string.IsNullOrEmpty(_profile.FriendlyName))
             if (string.IsNullOrEmpty(_profile.FriendlyName))
             {
             {
-                return "Emby - " + _serverName;
+                return "Jellyfin - " + _serverName;
             }
             }
 
 
             var characterList = new List<char>();
             var characterList = new List<char>();