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

Rozhuk Ivan f1c6850bac Update liblcb: Remove syntax shugar. 1 maand geleden
.github 1d10bd71a9 Update liblcd: 1 maand geleden
freebsd e7330dd5bf Fix: 6 jaren geleden
nginx 5b7cc40e04 Update CMake, Codelite, config files and readme 3 maanden geleden
php 5b7cc40e04 Update CMake, Codelite, config files and readme 3 maanden geleden
src f1c6850bac Update liblcb: Remove syntax shugar. 1 maand geleden
www 45c73c79ec Remove disabled "tvg-logo" support from m3u_browse() 3 jaren geleden
.editorconfig 5bdf950af0 Add .editorconfig file. 1 maand geleden
.gitmodules 378d488578 add liblcb 6 jaren geleden
CMakeLists.txt 509b6e50c0 Update liblcd: 1 maand geleden
LICENSE a77bf04d5a Add err handling 6 jaren geleden
config.h.cmake 784c7a726c Update liblcb: 3 jaren geleden
dist.sh fe3393ff5c Migration to CMake build system 6 jaren geleden
readme.md 1d10bd71a9 Update liblcd: 1 maand geleden
ssdpd.conf f3d4456715 Migrate to syslog. 2 maanden geleden
ssdpd.conf.debug f3d4456715 Migrate to syslog. 2 maanden geleden
ssdpd.project f1c6850bac Update liblcb: Remove syntax shugar. 1 maand geleden
ssdpd.workspace dc776e1e19 Add CodeLite files 2 jaren geleden
test.txt 286d26a26b Update test patterns 6 jaren geleden

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.

Run tests

mkdir -p build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_TESTS=1 ..
cmake --build . --config Release -j 16
ctest -C Release --output-on-failure -j 16

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.