UPnP
UPnP copied to clipboard
PHP Library for Interacting with UPnP Network Devices
This lib is very neat thanks! Its just for me the search function is very slow (but its a big network). Any way I just wanted to share bare minimum...
Just wanted to share this modification to the library to return all available media meta: src/Mediaserver/Browse.php around line 71: ``` foreach($item->childNodes as $property){ if($property->nodeName === 'res'){ $att_length = $property->attributes->length; for($i...
https://github.com/jalder/UPnP/blob/7559815f0ef16b6e96bc8be59a08bf5a464523ef/src/Mediaserver/Browse.php#L55 On this line when browsing my synology nas it throws errors, as $property->attributes is not always an array. Seems the foreach is just an empty {} and seems to...
The unit tests are very out of date. Need to move PHP version to current 5.6 and maybe consider testing under PHP 7.