Difference between revisions of "UPnP"

From MythTV Official Wiki
Jump to: navigation, search
(UPnP-client software:)
(Moved Developers Notes on UPnP section to separate article)
Line 62: Line 62:
 
* D-Link [http://www.dlink.com/products/?pid=653 DSM-330] DiVx Connected HD Media Player - UPnP not supported
 
* D-Link [http://www.dlink.com/products/?pid=653 DSM-330] DiVx Connected HD Media Player - UPnP not supported
 
* [http://www.xbox.com XBOX 360] According to GreyFoxx, this does not work  8/21/09 - Works perfect
 
* [http://www.xbox.com XBOX 360] According to GreyFoxx, this does not work  8/21/09 - Works perfect
 
==Developers notes on UPnP==
 
A v1.0 compliant UPnP AV MediaServer was implemented in MythTV CVS on the 6th of June 2006 by dblain, (for more specific MythTV code information see {{changeset|10118}}). UPnP in MythTV is still a work in progress. There is a lot of work left to get a totally compliant implementation. And as there are so many aspects (and potential) to UPnP feel free to help out in adding new UPnP features, (or improve the existing functions, like make the UPnP AV MediaServer in MythTV UPnP AV v2.0 compliant by the new UPnP AV v2 specifications, see upnp.org). Note that one nice thing about the UPnP standards it is extendable by design, meaning each UPnP product can have value-added services layered on top of the basic device architecture by the individual manufacturers.
 
 
UPnP (Universal Plug and Play) is a set of royalty-free computer network protocols from the [http://www.upnp.org UPnP Forum]. UPnP is built upon open, internet-based communication standards such as SSDP, HTTP, XML, SOAP, etc. (which means that any developer/programmer can make a device or software for any operating-system/platform in any programming-language by following the UPnP standards and it should automatically be compatible with all other UPnP devices).  UPnP achieves this by defining and publishing UPnP device control protocols (also called profiles). One profile called UPnP Gateway is what routers implements to let computers automatically discover them or even control them by opening/closing ports on a firewall for example. Another profile which is not to be confused with the previous one is UPnP AV (for audio/video) which defines a set of functionalities to share/control and render content on a local network. There are typically three types of devices in UPnP AV (Audio/Video); a MediaServer which is a 'slave' device which sole purpose is to share content, a MediaRenderer which is a 'slave' device that can render content, and a UPnP MediaServer ControlPoint which is the 'master' that can detect/find UPnP MediaServers and control them (browse). UPnP MediaServers ControlPoint is not an actual UPnP device as it cannot be detected by other UPnP devices. A UPnP MediaRenderer ControlPoint is the 'master' that can detect/find and control UPnP MediaRenderers. A DMP (Digital Media Player) only implements a UPnP MediaServer ControlPoint. The UPnP architecture supports zero-configuration, invisible networking and automatic discovery for a breadth of device categories from a wide range of vendors, whereby a device can dynamically join a network, obtain an IP address, announce its name, convey its capabilities upon request, and learn about the presence and capabilities of other devices. DHCP and DNS servers are optional and are only used if they are available on the network. A device can leave a network smoothly and automatically without leaving any unwanted state information behind.
 
 
MythTV current UPnP AV MediaServer implementation has been written from the ground up as an integrated part of mythbackend.  The code is extensible and capable of being used for any upnp applicable service. Another option, if you are a C/C++ programmer and like to add a UPnP MediaServer ControlPoint / UPnP-client (or other UPnP features) to use MythTV then you should also checkout an GPL licenced alternative, like; [http://sourceforge.net/projects/ushare uShare], and the [http://sourceforge.net/projects/platinum Platinum UPnP SDK], available on SourceForge.net is a free and open source software development kit (under the GPL licence) that lets you easily create a UPnP MediaServer, MediaRenderer or Contol Point. You should also visit the official [http://www.upnp.org UPnP™ Forum], also, other good links for developers can be found at the bottom of the [http://en.wikipedia.org/wiki/Upnp UPnP article on Wikipedia].
 
 
*The UPnP AV (UPnP = Universal Plug and Play Protocol, and AV = Audio/Video) standard is a collection of connectivity and communication protocols, a few of which would suit MythTV:
 
** UPnP MediaServer DCP - which is the UPnP-server (a 'slave' device) that share/stream media-data (like audio/video/picture/files) to UPnP-clients on the network).
 
** UPnP MediaServer ControlPoint - which is the UPnP-client (a 'master' device) that can auto-detect UPnP-servers on the network to browse and stream media/data-files from them.
 
** UPnP Remote User Interface (RUI) client/server - which sends/recieves control-commands beween the UPnP-client and UPnP-server over network, (like record, schedule, play, pause, stop, etc.).
 
** UPnP MediaRenderer DCP - which is a 'slave' device that can render content.
 
** UPnP RenderingControl DCP - control MediaRenderer settings; volume, brightness, RGB, sharpness...).
 
 
UPnP is the future of networked entertainment and are leading the way to an interconnected lifestyle. The [http://www.upnp.org UPnP™ Forum] currently consists of over 800 members (which consists of vendors, industry leaders in consumer electronics, computing, home automation, home security, appliances, printing, photography, computer networking, and mobile products), including companies such as Microsoft, Intel, AMD, Adobe, Belkin, Cisco, LinkSys, D-Link, 3com, Fujitsu, IBM, NEC, and RealNetworks. UPnP Forum membership is free.
 
 
Much information about compatibility can be found on the [http://www.dlna.org Digital Living Network Alliance (DLNA)] website. DLNA is a specification that allows the sharing of music, photo, and video files over the home network, between different consumer electronics and PC products. The DLNA, like the UPnP Forum, consists of vendors, industry leaders in consumer electronics, etc. Their goal make sure different UPnP devices work together without problem, they feature a "DLNA CERTIFIED™" certificate for products that have passed their interoperability testing standards, that includes guidelines which should be followed when making a UPnP device. Membership of DLNA is free.
 
 
PS! Feature request to any willing developers out there; "[http://www.upnp.org/standardizeddcps/remoteui.asp UPnP Remote User Interface Client (UPnP RUI)]" support in both MythTV back-end and front-end, so that both the MythTV front-end and other UPnP-clients which also support the "[http://www.upnp.org/standardizeddcps/remoteui.asp UPnP Remote User Interface Server (UPnP RUI)]" protocol could use it to fully control MythTV back-end using the same standard, such as HTPC applications like SnapStream BeyondTV (and possible MediaPortal in the future) and other PVR softwares/devices, (control functions and commands such as record, schedule, play, pay, stop, fast-forward, etc.)
 
  
 
==Troubleshooting==
 
==Troubleshooting==
Line 87: Line 67:
 
* Make sure you have a value for <b>MusicLocation</b> and/or <b>VideoStartupDir</b> set for your backend hostname if your frontend and backend are on different machines.
 
* Make sure you have a value for <b>MusicLocation</b> and/or <b>VideoStartupDir</b> set for your backend hostname if your frontend and backend are on different machines.
 
* Make sure you have a route for 239.0.0.0/8 out your lan nic BEFORE mythbackend starts (route add -net 239.0.0.0/8 eth0).  It seems it won't work if you add the route later.  Playstation 3's (ps3) take a while to find the backend, and searching can help, but the PS3 (f/w 2.17) isn't actually sending the packet everytime you search.  You can tcpdump for udp packets to 239.255.255.250 to watch for it. `tcpdump ether host {ps3 mac addr}` also works well.
 
* Make sure you have a route for 239.0.0.0/8 out your lan nic BEFORE mythbackend starts (route add -net 239.0.0.0/8 eth0).  It seems it won't work if you add the route later.  Playstation 3's (ps3) take a while to find the backend, and searching can help, but the PS3 (f/w 2.17) isn't actually sending the packet everytime you search.  You can tcpdump for udp packets to 239.255.255.250 to watch for it. `tcpdump ether host {ps3 mac addr}` also works well.
 +
 +
==See Also==
 +
[[Developers Notes on UPnP]]
  
 
==External Links==
 
==External Links==

Revision as of 03:33, 12 August 2010

Universal Plug and Play (UPnP) media sharing is an extremely easy method of sharing media (pictures/video/audio) on your network as it features automatic-discovery and does not require any configuration. As with most things which are very convenient, the security of any given implementation is an issue to which careful attention should be paid.

Introduction

Universal Plug and Play is a set of computer network protocols from the UPnP Forum. The goals of UPnP are to allow UPnP devices on a network to detect each other and connect seamlessly, and to simplify the implementation of networks in the home (data sharing, communications, and entertainment) and corporate environments. The UPnP architecture supports zero-configuration, which implies no need for manual configuration on the user's end. There are typically three types of UPnP AV (Audio/Video) device control protocols (also called profiles); "UPnP AV MediaServer" whose sole purpose is to share content, "UPnP AV MediaRenderer" which renders content and exposes an interface to control the playback, and a "UPnP AV MediaServer ControlPoint" which can detect/find "UPnP AV MediaServers" and browse them to read media from them. A DMP (Digital Media Player) typically only implements a UPnP AV MediaServer ControlPoint, to be able to play files from UPnP AV MediaServers. For a more detailed explanation please read the "Developers notes on UPnP" at the bottom of this page.

UPnP in MythTV

MythTV versions starting from 0.20 have a built-in UPnP-server (a so called "UPnP AV MediaServer" device). UPnP AV MediaServers are where you store and share your media (pictures/videos/audio/music) from. So you can share MythTV media files to any UPnP-client (a so called "UPnP AV MediaServer ControlPoint" device) on your local-network, as long as that UPnP-client is not behind a firewall or you have opened the ports for UPnP in your firewall. That UPnP-client can then play those media files if it supports those MythTV codecs/container formats.

Compatible UPnP AV MediaServer ControlPoints (UPnP clients)

There are UPnP AV MediaServer ControlPoints (UPnP clients) available for most operating systems and many hardware platforms. UPnP AV MediaServer ControlPoints can be categorized as either software-based or hardware-based. Software-based UPnP clients can be run on PCs (personal computers), mainly on Win32, Linux, BSD, Unix or Mac platform. Hardware-based UPnP-clients may run on a stand-alone (or any specific hardware) DMP (Digital Media Player), like for example a DVD-player with built-in network-controller to stream media files over the network. Currently, there are more software-based UPnP clients than hardware-based ones, but chances are that will change in the future.

UPnP-client software:

  • Andromote, a control point/Media Renderer for the Android Platform.
  • PlugPlayer, a control point/Media Renderer for the iPhone and iPod touch.
  • SnapStream BTV/BeyondTV, a commercial Media Control/Renderer/Server and PVR for Windows.
  • Nero MediaHome (part of Nero Premium), a commercial Media Control/Renderer/Server for Windows, (also features nice on-the-fly transcoding funcationlity and media organizing).
  • Cyberlink PowerCinema, a commercial Media Control/Renderer/Server for Windows, (also features nice media organizing funcationlity).
  • djmount, a free open source Linux client, which presents all MediaServers in a filesystem so that files can be played using any media player.
  • GeeXboX, a free embedded Linux LiveCD-based Media Player distribution which can be used on an x86 or PowerPC hardware. GeeXboX can also be installed to a disk drive, USB disk, or CF flash.
  • Media Manager, from Roxio, which is used for transferring media to smart phones, such as the Blackberry Curve.
  • MediaCloud, a player for Mac OS X (AppleTV plugin also available).
  • Platinum UPnP SDK, a cross-platform dual license open source/commercial UPnP Media Control/Renderer/Server SDK for Windows, Linux, Mac. (This is what XBMC uses).
  • Intel UPnP AV open Test and Development Tools, UPnP UDP-Sniffer/Device-Spy/Device-Builder code generator.
  • XBMC (formerly X Box Media Center). Free client for XBox, Mac OS X, Linux and Windows. Has built in UPnP from the Platinum UPnP C++ SDK.

UPnP-client hardware:

UPnP client players have their own MythTV wiki page: UPnP Client Info

UPnP-clients software/hardware not yet tested with MythTV:

  • Slimserver: a non-tested free open source UPnP-client (and server) from Slim Devices for Windows, Linux and Mac OSX. (Comment by news: Up to my knowledge they use their proprietary protocol and not uPnP)
  • GMediaRender, a free open source UNIX/Linux media renderer.
  • JRiver Media Center, a commercial Media Control/Renderer/Server for Windows.
  • Musicmatch Jukebox, a commercial MediaServer UPnP MediaServer and music-player for Windows.
  • Nero ShowTime, a commercial Media Control/Renderer/Server for Windows.
  • VLC media player, a free open source cross-platform media player that has a UPnP-client (via the CyberLink UPnP plugin).
  • WinAmp, a free closed source media player for Windows, using the commercial On2Share UPnP plugin.
  • Microsoft Windows Media Player (WMP), a free closed source media player for Windows, using the commercial On2Share UPnP plugin.
  • D-Link DSM-320, MediaLounge Wireless Media Player, (stand-alone hardware player).
  • D-Link DSM-320RD, MediaLounge Wireless Media Player with DVD and Card Reader, (stand-alone hardware player).
  • NETGEAR EVA8000, a wireless HD-capable media player supporting a range of formats.

UPnP-clients server/hardware not (yet?) compatible with MythTV:

  • Sonos Zone Player is a UPnP-client which can't play its content on any non-Sonos device (it uses some propritory protocol to stream audio).
  • Elgato eyeHome hardware is not a UPnP client. It seems to use the iRDMI (ShoutCast?) protocol, plus other proprietary stuff (ports 1055-1059)
  • Archos 605 wifi plays music fine. It can browse videos, but many aren't playable. .VOB files seem to work.
  • Canola has the ability to play audio from UPnP servers but the plugin specifically says MythTV is not supported.
  • D-Link DSM-330 DiVx Connected HD Media Player - UPnP not supported
  • XBOX 360 According to GreyFoxx, this does not work 8/21/09 - Works perfect

Troubleshooting

  • Make sure you set the proper external IP in mythtv-setup, otherwise you will be able to see your server via UPnP, but the file location urls will contain the default 127.0.0.1 IP address.
  • Make sure you have a value for MusicLocation and/or VideoStartupDir set for your backend hostname if your frontend and backend are on different machines.
  • Make sure you have a route for 239.0.0.0/8 out your lan nic BEFORE mythbackend starts (route add -net 239.0.0.0/8 eth0). It seems it won't work if you add the route later. Playstation 3's (ps3) take a while to find the backend, and searching can help, but the PS3 (f/w 2.17) isn't actually sending the packet everytime you search. You can tcpdump for udp packets to 239.255.255.250 to watch for it. `tcpdump ether host {ps3 mac addr}` also works well.

See Also

Developers Notes on UPnP

External Links