Note that all of the following is highly experimental and will not work for everyone with every type of media. I won't be providing any support for this, and, if no one can provide any assistance for making it better, I won't be making any updates. With that said, here is the meat of the post...
Hello all. I put together a TVersity channel for the Roku DVP and a Roku DVP profile entry for the TVersity Media Server. You can download the channel here:
http://rapidshare.com/files/333440990/tversityplayer.zip.htmlEdit: An updated version is available a few posts down
And the profile entry will be included at the bottom of this post. You add this profile entry to the profile list element inside of the profiles.xml file. Mine was located at C:\Users\[Username]\AppData\Local\TVersity\Media Server\profiles.xml
Edit: You will need to restart sharing in TVersity after you make the change to profiles.xml. You can review the status screen in the TVersity gui to confirm that your device appears as "Roku HD PVR." Also note that you will likely have to attempt to connect to TVersity with your device before it will be recognized.
Edit 2: This profile
>>> DOES NOT WORK <<<. I'm merely leaving it up so someone can use it as a point of reference to hopefully resolve the issue.
You will also have to make a change to the appMain.brs file in the sources folder in the channel zip. Lines 31 and 32 describe the location for TVersity's RSS feed. Update the IP and port for your TVersity config at line 31. Unless you are running an old version of TVersity, you shouldn't have to update line 32.
You can find how to install the zip in one of the documents in the dev kit (I don't recall which one).
Note in the profile that I have commented out all of the ASF/WMV mimetypes/codecs. I was unable to get any of these to work in WMP, much less on the Roku. I got all the mimetype/codec values from Roku Component Reference.
Also note that in the channel I have hardcoded the stream format as mp4, the bitrate as 1500, and the quality as SD. Also, the organizational structure of navigating through all the feeds needs to be spruced up, but I haven't had it break in the last few revisions.
I have had success with alot of mp4 and avi (mostly xvid/divx) files. I also had one mkv file work (it was one of only two that I had lying around). I don't really have any videos of other formats to test with. It seems like most of the ones that work were lower resolution videos, and the ones that don't are higher.
I don't have any hard numbers as I haven't had a whole lot of time for testing, and it looks like I'll have a lot less going into the future. Which is why I'm posting it in this state, in hopes of someone taking it and running with it.
I'm sure there is a lot of info I'm leaving out, but I've been working on this for a couple of days and may have forgotten to mention it.
I'll try to check in one day this week to answer any questions that are directly related to the programming (again, I don't really think I'll have the time to provide any user support).
Good luck, and I hope someone makes good use of it.
<profile id="ec5b1100-0000-1100-1101-ec5b314a1101"><!-- Roku HD DVP (N1100/N1101) -->
<friendlyName>Roku HD DVP</friendlyName>
<manufacturerName>Roku</manufacturerName>
<modelName>N1100/N1101</modelName>
<HTTPHeader inUASubstr="Roku/DVP" />
<deviceDescription name="UPNP_AV_MediaServer_1.0.default.xml" />
<contentDirectory shortUrl="true" friendlyFilename="true" />
<!--
<transcodeTarget audio="audio/x-ms-wma" video="application/x-ms-asf" photo="image/jpeg"
onlineAudio="audio/x-ms-wma" onlineVideo="application/x-ms-asf" onlinePhoto="image/jpeg" />
-->
<transcodeTarget audio="audio/aac" video="video/mp4" photo="image/jpeg"
onlineAudio="audio/aac" onlineVideo="video/mp4" onlinePhoto="image/jpeg" />
<maxVideoInfo width="1280" height="720" bitrate="20000000" fps="30"></maxVideoInfo>
<minVideoInfo width="0" height="0" bitrate="0" fps="0"></minVideoInfo>
<maxImageInfo width="1280" height="720"></maxImageInfo>
<minImageInfo width="0" height="0"></minImageInfo>
<maxAudioInfo sampleRate="48000" bitsperSample="16" nchannels="6" bitrate="1536000"></maxAudioInfo>
<minAudioInfo sampleRate="8000" bitsperSample="8" nchannels="1" bitrate="32000"></minAudioInfo>
<fileInfo maxVideoSize="4294967295" maxAudioSize="2147483647" />
<mimetypeList>
<!--
<mimetype value="audio/x-ms-wma">
<codec name="WMAV2"/>
</mimetype>
<mimetype value="application/x-ms-asf">
<codec name="WMAV2"/>
<codec name="WMV3"/>
<codec name="WVC1"/>
</mimetype>
-->
<mimetype value="video/mp4">
<!--<codec name="H263"/>-->
<codec name="H264"/>
<codec name="AAC"/>
<codec name="MPEG4AAC"/>
</mimetype>
<mimetype value="video/MP4V-ES" rename="video/mp4" />
</mimetypeList>
</profile>