7 hours ago
I don't think a DLNA server running on another device would cause issues. Only if they were both on the same device since only one app can broadcast on port 1900 at the same time.
DLNA, in general, is very finicky. I'm not sure I have a good solution.
One more thing you can try is publishing port 7359. It isn't used for DLNA, specifically, but it is used for service discovery.
Change this
To this
DLNA, in general, is very finicky. I'm not sure I have a good solution.
One more thing you can try is publishing port 7359. It isn't used for DLNA, specifically, but it is used for service discovery.
Change this
Code:
ports:
- 8096:8096
- 1900:1900
To this
Code:
ports:
- 8096:8096
- 1900:1900
- 7359:7359