william emby conn 2 Posted October 8, 2020 Posted October 8, 2020 I have five DLNA severs on my network and the Emby DLNA server is the only one that is not always there. I have to restart Emby to get it to appear. I noticed there was many users complaining about this in a thread in January 2019. You have had multiple Windows server releases since then and it still isn't fixed. Given how stable my others servers are it can't be that difficult. 1
Luke 40072 Posted October 11, 2020 Posted October 11, 2020 Hi, what you can do is lower the blast message interval in DLNA settings, then Emby Server will notify devices on your network more often. Please see if that helps. Thanks.
Harald72 1 Posted October 14, 2020 Posted October 14, 2020 I have the very same problem as william. In the past days I tried out several DLNA servers. The setup is as follows: - Two servers (Plex and Emby) were installed on my Windows PC. Another server is provided by my Router (AVM Fritzbox). - The client is a Samsung BD-J7500 BluRay player. A 2015 or 2016 model. - All equipment is connected via Ethernet. The results are as follows: - The Samsung shows the Plex server as well as the AVM Fritzbox server in the list of DLNA servers but not Emby. - On the other hand I can reach the Emby web interface from the Samsung using its built-in web browser. It is also possible to remote control the playback on the Samsung from the Emby server that is installed on the PC. - The Emby server is also visible for another DLNA device, my AV receiver Yamaha RX-A880, a 2018 model. I already tried to reduce the "blast alive" interval significantly (from 600 to 20) but to no avail. What else can I do? It would be a pity if I could not use Emby because it seems that Emvy presents the media on the client exactly in the way I want it (unline Plex that bothers with many subfolders). I am using Emby 4.5.2.0. My PC runs on Windows 10 version 1909. The Samsung has the latest firmware. Of course I followed the usual tips like updating, restarting, etc. Thank you in advance for your help. Harald 1
Luke 40072 Posted October 17, 2020 Posted October 17, 2020 Hi, did you try restarting Emby Server while the Samsung Dlna app is up and running?
Harald72 1 Posted October 17, 2020 Posted October 17, 2020 Dear Luke, Restarting the server did not help, unfortunately. I am attaching the log file for the relevant period (@Sammy, indeed I left that out in my first post because I thought it might not be necessary). Probably the interesting part starts at "2020-10-18 00:36:50.003". There seems to be some form of communication between my Samsung BD-J7500 and the Emby Server but it does not result in Emby being shown in the Samsung. For the log file I enabled both "Debug" under DLNA and "Debug" under "Logs". To exclude problems with my Windows 10 PC I installed Emby and another DLNA server (Gerbera) on a Raspberry Pi. Again, the Samsung recognised Gerbera on the Raspi but not Emby. So there must be something about the combination Emby/Samsung. Thank you in advance for your help! Harald embyserver-2.txt
Carlo 4552 Posted October 18, 2020 Posted October 18, 2020 @Luke If it's any help to you, I have the same issue with same symptom's and conditions as Harald72. I don't have Fritzbox but other DLNA servers. Emby is the only one that will never show up on my Samsung TV as a Server but I can still cast to it. It's also very slow to show up even in Windows for me. Changing the beacon interval is not a help either. The Samsung TV shows up in Emby for casting to it but going into devices on the Samsung TV itself is where the issue is. No Emby showing up there so you can't get to the media driving it from the TV.
Harald72 1 Posted October 22, 2020 Posted October 22, 2020 Hi Luke, To overcome the problems with DLNA discovery I managed to install the old Emby app on my BD-J7500. However, I cannot play all the video files. The newer videos I have are encoded in H.264 level 4.2 but the BD-J7500 supports H.264 only up to level 4.1. This was actually the reason why I started looking for a DLNA server which is capable of transcoding videos on-the-fly. But how do I set the transcoding appropriately? I could not find any documentation on the DLNA Profiles feature. Thank you in advance for your help. Harald
Luke 40072 Posted October 22, 2020 Posted October 22, 2020 2 hours ago, Harald72 said: Hi Luke, To overcome the problems with DLNA discovery I managed to install the old Emby app on my BD-J7500. However, I cannot play all the video files. The newer videos I have are encoded in H.264 level 4.2 but the BD-J7500 supports H.264 only up to level 4.1. This was actually the reason why I started looking for a DLNA server which is capable of transcoding videos on-the-fly. But how do I set the transcoding appropriately? I could not find any documentation on the DLNA Profiles feature. Thank you in advance for your help. Harald How old of a version did you go back to? I should have the discovery resolved for the next release. You can try it on the beta channel in the next day or two.
Happy2Play 9441 Posted October 22, 2020 Posted October 22, 2020 2 hours ago, Harald72 said: The newer videos I have are encoded in H.264 level 4.2 but the BD-J7500 supports H.264 only up to level 4.1. This was actually the reason why I started looking for a DLNA server which is capable of transcoding videos on-the-fly. But how do I set the transcoding appropriately? This isn't anything documented and UI doesn't really help as not every variable is editable in UI. Looking directly at the profile xml show more as you would set a codecprofile. Example from existing profiles. <CodecProfile type="Video" codec="h264"> <Conditions> <ProfileCondition condition="LessThanEqual" property="Width" value="1920" isRequired="true" /> <ProfileCondition condition="LessThanEqual" property="Height" value="1080" isRequired="true" /> <ProfileCondition condition="LessThanEqual" property="VideoLevel" value="41" isRequired="true" /> </Conditions> <ApplyConditions /> </CodecProfile> Googling "writing profiles for dlna devices" and you can see the other guys document as dlna is pretty much universal.
Luke 40072 Posted October 23, 2020 Posted October 23, 2020 Regarding visibility, If you'd like to try the beta server, I'm curious to know if version 4.6.0.3+ helps with this. Thanks.
Harald72 1 Posted October 25, 2020 Posted October 25, 2020 Hi Luke, Thank you for your efforts. I installed the 4.6.0.3 beta. Unfortunately Emvy is still not showing up on my Samsung BD-J7500 while Plex installed on the same PC does (as does the DLNA server on my router). I reduced both the discovery period and the alive notifications to 20 seconds but still no success. I am wondering what's so special with Samsung when it comes to DLNA. Do you need again the log file? @Happy2Play: Thank you for pointing this out. It may be that Emby's Samsung profile is working for me but I can find this out only once my Samsung recognizes the server... When it comes to defining the profiles it seems to me though that the concept is generic but every server uses its own syntax for the profiles. For example you can find extensive documentation on creating a DLNA device profile at https://forums.plex.tv/t/writing-profiles-for-dlna-devices/38060. However, the tags and attributes used for Plex differ from the example you quoted above. So it would be really helpful to have a full documentation of how to create or modify a profile for Emby. Kind regards, Harald
Harald72 1 Posted October 27, 2020 Posted October 27, 2020 Here it is. Again I turned on general logging as well as DLNA logging. It seems the server does recognize the Samsung device (BD-J7500) yet Emby does not appear as DLNA server on the device. Thank you for your help. Harald embyserver.txt
Luke 40072 Posted February 13, 2021 Posted February 13, 2021 Hi, would you mind trying Emby Server 4.6+ (as of today in beta), combined with the 1.0.45 Dlna plugin update(or greater)? Please let us know if this helps. Thanks !
JAAlperin 3 Posted June 18, 2024 Posted June 18, 2024 (edited) How do you set the blast message interval for DLNA? I no longer find it in the DLNA settings. I'm running 4.8.8.0-1 in a TrueNAS jail. Edited June 18, 2024 by JAAlperin
Luke 40072 Posted June 19, 2024 Posted June 19, 2024 On 6/18/2024 at 11:46 AM, JAAlperin said: How do you set the blast message interval for DLNA? I no longer find it in the DLNA settings. I'm running 4.8.8.0-1 in a TrueNAS jail. Hi, what are you trying to accomplish?
mattl1979 3 Posted August 28, 2024 Posted August 28, 2024 I've never got DLNA to work with Emby either. I've another post on this somewhere. Literally every DLNA server I've used in my network works, except Emby. I've tried apps like Plex, Jellyfin, Subsonic, and others. I've tried old versions of Emby and beta versions. Never made a difference. DLNA clients include a Panasonic Blu-Ray player, Roku Ultra, Sony Android TV, LG WebOS TV, and Windows 11 PC.
yocker 274 Posted September 1, 2024 Posted September 1, 2024 On 8/28/2024 at 5:52 PM, mattl1979 said: I've never got DLNA to work with Emby either. I've another post on this somewhere. Literally every DLNA server I've used in my network works, except Emby. I've tried apps like Plex, Jellyfin, Subsonic, and others. I've tried old versions of Emby and beta versions. Never made a difference. DLNA clients include a Panasonic Blu-Ray player, Roku Ultra, Sony Android TV, LG WebOS TV, and Windows 11 PC. Are you running Emby in a docker and in bridge mode?
mattl1979 3 Posted April 10 Posted April 10 On 9/1/2024 at 12:57 AM, yocker said: Are you running Emby in a docker and in bridge mode? I'm running this in Docker w/ host network. Like my message says above, EVERY DLNA server I've tried works on my network EXCEPT Emby. It doesn't show in Windows, Roku, and my Panasonic Blu-Ray Player. Even the latest version of Jellyfin has a working DLNA server. Not sure what the issue is with how the DLNA implementation is in Emby. Can't you just use the libraries from Jellyfin (which derived from Emby in the past anyways)?
Luke 40072 Posted April 10 Posted April 10 39 minutes ago, mattl1979 said: I'm running this in Docker w/ host network. Like my message says above, EVERY DLNA server I've tried works on my network EXCEPT Emby. It doesn't show in Windows, Roku, and my Panasonic Blu-Ray Player. Even the latest version of Jellyfin has a working DLNA server. Not sure what the issue is with how the DLNA implementation is in Emby. Can't you just use the libraries from Jellyfin (which derived from Emby in the past anyways)? @mattl1979 Hi there, please attach the Emby server log from when the problem occurred: How to Report a Problem Thanks!
yocker 274 Posted April 10 Posted April 10 9 hours ago, mattl1979 said: I'm running this in Docker w/ host network. Like my message says above, EVERY DLNA server I've tried works on my network EXCEPT Emby. It doesn't show in Windows, Roku, and my Panasonic Blu-Ray Player. Even the latest version of Jellyfin has a working DLNA server. Not sure what the issue is with how the DLNA implementation is in Emby. Can't you just use the libraries from Jellyfin (which derived from Emby in the past anyways)? I also had the problem of DLNA not working at one point. I found out that the Emby docker needs it's own IP for DLNA to work, it doesn't work if it uses the IP of the server it self. Atm. My Emby is running a custom network and DLNA is working. 1 1
yocker 274 Posted April 10 Posted April 10 I believe ports 1900 and 1901 should also be accessible to Emby or other systems to be able to discover Emby DLNA. You might need to add that to the docker setup.
mattl1979 3 Posted May 12 Posted May 12 On 4/10/2025 at 9:54 AM, yocker said: I also had the problem of DLNA not working at one point. I found out that the Emby docker needs it's own IP for DLNA to work, it doesn't work if it uses the IP of the server it self. Atm. My Emby is running a custom network and DLNA is working. That's interesting. Not sure why Emby would be different than any other DLNA server I've tried. I've tried a multitude of installations for Emby as well, including native to Synology, through a Docker container on Synology, directly on my Windows PC, and on a Docker container on my Windows PC. No installation method made a difference. I don't know how I'd assign a specific private IP to just Emby.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now