SSDPd - announces UPnP/DLNA device across network. PHP media server inside

Rozhuk Ivan f3d4456715 Migrate to syslog. 2 weeks ago
.github eba9a1eeea Add GitHub Sponsors 2 weeks ago
freebsd e7330dd5bf Fix: 6 years ago
nginx 5b7cc40e04 Update CMake, Codelite, config files and readme 2 weeks ago
php 5b7cc40e04 Update CMake, Codelite, config files and readme 2 weeks ago
src f3d4456715 Migrate to syslog. 1 week ago
www 45c73c79ec Remove disabled "tvg-logo" support from m3u_browse() 3 years ago
.gitmodules 378d488578 add liblcb 6 years ago
CMakeLists.txt f3d4456715 Migrate to syslog. 1 week ago
LICENSE a77bf04d5a Add err handling 6 years ago
config.h.cmake 784c7a726c Update liblcb: 3 years ago
dist.sh fe3393ff5c Migration to CMake build system 6 years ago
readme.md eba9a1eeea Add GitHub Sponsors 2 weeks ago
ssdpd.conf f3d4456715 Migrate to syslog. 1 week ago
ssdpd.conf.debug f3d4456715 Migrate to syslog. 1 week ago
ssdpd.project f3d4456715 Migrate to syslog. 1 week ago
ssdpd.workspace dc776e1e19 Add CodeLite files 1 year ago
test.txt 286d26a26b Update test patterns 6 years ago

readme.md

SSDPd

Build-macOS-latest Actions Status Build-Ubuntu-latest Actions Status Build-PHP Status Scrutinizer Code Quality

Rozhuk Ivan rozhuk.im@gmail.com 2013-2024

SSDPd - Announces UPnP/DLNA device across network. You can use PHP script, nginx config and static files to build your own UPnP/DLNA server.

Licence

BSD licence. Website: http://www.netlab.linkpc.net/wiki/en:software:ssdpd:index

Donate

Support the author

  • GitHub Sponsors:
  • Buy Me A Coffee:
  • PayPal: PayPal
  • Bitcoin (BTC): 1AxYyMWek5vhoWWRTWKQpWUqKxyfLarCuz

Features

  • can act as UPnP/DLNA ContentDirectory to share multimedia content
  • can announce remote UPnP/DLNA devices

Compilation and Installation

sudo apt-get install build-essential git cmake fakeroot
git clone --recursive https://github.com/rozhuk-im/ssdpd.git
cd ssdpd
mkdir build
cd build
cmake ..
make -j

UPnP/DLNA PHP server requires

  1. nginx with headers_more.
  2. PHP with fpm, fileinfo, soap, xml.

Usage

ssdpd [-d] [-v] [-c file]
       [-p PID file] [-u uid|usr -g gid|grp]
 -h           usage (this screen)
 -d           become daemon
 -c file      config file
 -p PID file  file name to store PID
 -u uid|user  change uid
 -g gid|group change gid
 -v           verboce

Setup

ssdpd

Copy %%ETCDIR%%/ssdpd.conf.sample to %%ETCDIR%%/ssdpd.conf then replace lan0 with your network interface name. Add more sections if needed. Remove IPv4/IPv6 lines if not needed.

Add to /etc/rc.conf:

ssdpd_enable="YES"

Run:

service ssdpd restart

PHP UPnP server

PHP

Add to /etc/rc.conf:

php_fpm_enable="YES"

Run:

service php-fpm restart

nginx

If nginx will serve only upnp then you can:

ln -f -s %%ETCDIR%%/nginx-upnp-full.conf %%CMAKE_INSTALL_PREFIX%%/etc/nginx/nginx.conf

If nginx build with DSO (dynamic modules load) then you need uncomment "load_module" and set correth path to module.

Or add to existing nginx.conf following line: include %%ETCDIR%%/nginx-upnp-handler.conf; some where in existing http/server section.

Add to /etc/rc.conf:

nginx_enable="YES"

Run:

service nginx restart

Data

Place shared data in: %%DATADIR%%/www/upnpdata or make in as simlink on existing data. Make sure that permissions allow www access.

Firewall

ssdpd

Allow all IPv4 with options proto igmp. Allow all udp dst port 1900.

PHP UPnP server

Allow in tcp dst port 80.