All Projects β†’ huin β†’ Goupnp

huin / Goupnp

Licence: bsd-2-clause
UPnP client library for Go (#golang)

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Labels

Projects that are alternatives of or similar to Goupnp

Netdisco
πŸ”Ž Python library to scan local network for services and devices.
Stars: ✭ 240 (-14.59%)
Mutual labels:  upnp
AirConnect-Synology
Updated AirConnect packages for Synology NAS and Synology Router
Stars: ✭ 200 (-28.83%)
Mutual labels:  upnp
nat-api
↔️ Fast port mapping with UPnP and NAT-PMP
Stars: ✭ 22 (-92.17%)
Mutual labels:  upnp
docker-airconnect
This is a dockerized version of AirConnect (https://github.com/philippe44/AirConnect) which bridges AirPlay with Sonos and the Google Cast protocol.
Stars: ✭ 24 (-91.46%)
Mutual labels:  upnp
dslrbrowser-ios
DSLR Browser iOS app to discover and connect to your Wi-Fi and DLNA enabled (Canon) camera
Stars: ✭ 17 (-93.95%)
Mutual labels:  upnp
Macast
Macast is a cross-platform application which using mpv as DLNA Media Renderer.
Stars: ✭ 3,786 (+1247.33%)
Mutual labels:  upnp
Internet Hosting Tool
Enable Moonlight streaming from your PC over the Internet with no configuration required
Stars: ✭ 205 (-27.05%)
Mutual labels:  upnp
go2tv
Cast media files to UPnP/DLNA Media Renderers and Smart TVs.
Stars: ✭ 99 (-64.77%)
Mutual labels:  upnp
upnpy
Lightweight UPnP client library for Python.
Stars: ✭ 46 (-83.63%)
Mutual labels:  upnp
slingr
A simple CLI for UPnP media file streaming
Stars: ✭ 32 (-88.61%)
Mutual labels:  upnp
UPnP Generic
A simple library that implements port mappings to router using UPnP SSDP for Arduino boards, running on nRF52, SAMD21/SAMD51, STM32F/L/H/G/WB/MP1, Teensy, RP2040-based boards, WT32_ETH01, Portenta_H7, etc. besides ESP8266/ESP32, using ESP WiFi, WiFiNINA, Ethernet W5x00, ESP8266/ESP32 AT-command WiFi, Portenta_H7 Murata WiFi or Vision-shield Ethe…
Stars: ✭ 14 (-95.02%)
Mutual labels:  upnp
Jupii
Play audio, video and images on UPnP/DLNA devices
Stars: ✭ 27 (-90.39%)
Mutual labels:  upnp
mmupnp
Universal Plug and Play (UPnP) ControlPoint library for Java/Kotlin
Stars: ✭ 39 (-86.12%)
Mutual labels:  upnp
nano-dlna
A minimal UPnP/DLNA media streamer
Stars: ✭ 146 (-48.04%)
Mutual labels:  upnp
netdisco
πŸ”Ž Python library to scan local network for services and devices.
Stars: ✭ 252 (-10.32%)
Mutual labels:  upnp
Rssdp
Really Simple Service Discovery Protocol - a 100% .Net implementation of the SSDP protocol for publishing custom/basic devices, and discovering all device types on a network.
Stars: ✭ 216 (-23.13%)
Mutual labels:  upnp
LMS-to-uPnP
Integrate UPnP players with LogitechMediaServer
Stars: ✭ 78 (-72.24%)
Mutual labels:  upnp
ssdp
Python asyncio library for Simple Service Discovery Protocol (SSDP).
Stars: ✭ 25 (-91.1%)
Mutual labels:  upnp
ssdp-responder
SSDP responder for Linux, InternetGatewayDevice icon in Windows :)
Stars: ✭ 41 (-85.41%)
Mutual labels:  upnp
rAudio-1
Raspberry Pi audio player: AirPlay, Audio CD, Bluetooth, DAB radio, DSP, Internet rafio, Multi-room, Spotify Connect, UPnP
Stars: ✭ 151 (-46.26%)
Mutual labels:  upnp

goupnp is a UPnP client library for Go

Installation

Run go get -u github.com/huin/goupnp.

Documentation

See GUIDE.md for a quick start on the most common use case for this library.

Supported DCPs (you probably want to start with one of these):

  • GoDoc av1 - Client for UPnP Device Control Protocol MediaServer v1 and MediaRenderer v1.
  • GoDoc internetgateway1 - Client for UPnP Device Control Protocol Internet Gateway Device v1.
  • GoDoc internetgateway2 - Client for UPnP Device Control Protocol Internet Gateway Device v2.

Core components:

  • GoDoc (goupnp) core library - contains datastructures and utilities typically used by the implemented DCPs.
  • GoDoc httpu HTTPU implementation, underlies SSDP.
  • GoDoc ssdp SSDP client implementation (simple service discovery protocol) - used to discover UPnP services on a network.
  • GoDoc soap SOAP client implementation (simple object access protocol) - used to communicate with discovered services.

Regenerating dcps generated source code:

  1. Build code generator:

    go get -u github.com/huin/goupnp/cmd/goupnpdcpgen

  2. Regenerate the code:

    go generate ./...

Supporting additional UPnP devices and services:

Supporting additional services is, in the trivial case, simply a matter of adding the service to the dcpMetadata whitelist in cmd/goupnpdcpgen/metadata.go, regenerating the source code (see above), and committing that source code.

However, it would be helpful if anyone needing such a service could test the service against the service they have, and then reporting any trouble encountered as an issue on this project. If it just works, then please report at least minimal working functionality as an issue, and optionally contribute the metadata upstream.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].