Hello MythTV users!<br><br>I&#39;m posting this, because I think it might help other WD TV Live and MythTV users with the same problem. <br><br>I&#39;m using MythTV 0.23.1 from debian-multimedia on Debian squeeze and german DVB-T with DVB-T-EPG-data.<br>

<br>First, the problem:<br>Some recorded shows don&#39;t start to play on my WD TV Live via Upnp, although they are listed correctly. The WD device doesn&#39;t even request the recording, the DMARender on the WD TV just prints this debug message:  &quot;UpnpDispatch_MediaRenderer_AVTransport_SetAVTransportURI:2587: CurrentURIMetaDate element had too large value&quot;<br>

<br>The weird thing is, that recordings from tv-station&#39;s like ARD,ZDF,ARTE etc are playing fine (public service TV), the private channels like RTL,Pro7 etc. didn&#39;t work. The former usually have a subtitle in their EPG data, the latter don&#39;t. When MythTV builds the mediamap for the recordings tree, it sets the title to &quot;Title: Subtile&quot; OR &quot;Title: Description&quot; if no subtitle is available. The leads to the long Metadata element that the WD complains about.<br>

<br>My quick and dirty solution (I don&#39;t really know how to use diff :) ):<br>In file: mythtv-0.23.1/programs/mythbackend/upnpcdstv.cpp replace:<br>line 276:                                                                                                                               <br>

QString sName      = sTitle + &quot;: &quot; + (sSubtitle.isEmpty() ? sDescription : sSubtitle);                                            <br>with this:                                                                                                                      <br>

QString sName      = sTitle + &quot;: &quot; + (sSubtitle.isEmpty() ? &quot;&quot; : sSubtitle);<br><br>Quick and dirty because if there&#39;s no description you can&#39;t distinguish two recordings with the same title. It would be better to truncate the description to a certain length...<br>

<br>I don&#39;t know if this is a MythTV bug. Don&#39;t know if there&#39;s a limit for element length in the Upnp specification. It might also be the device&#39;s fault, but it&#39;s probably easier to make MythTv compatible.<br>

<br>Best regards<br>