add a tag like:
<srt>http://myserver.com/videos/myvideo.srt</srt>
to your xml:
item sdImg="http://rokudev.roku.com/rokudev/examples/videoplayer/images/JeffHan.jpg" hdImg="http://rokudev.roku.com/rokudev/examples/videoplayer/images/JeffHan.jpg">
<title>Jeff Han demos his breakthrough touchscreen</title>
<srt>http://myserver.com/videos/myvideo.srt</srt>
<contentId>10061</contentId>
<contentType>Talk</contentType>
<contentQuality>SD</contentQuality>
<streamFormat>mp4</streamFormat>
<media>
<streamQuality>SD</streamQuality>
<streamBitrate>1500</streamBitrate>
<streamUrl>http://video.ted.com/talks/podcast/JeffHan_2006_480.mp4</streamUrl>
</media>
<synopsis>After years of research on touch-driven computer displays, Jeff Han has created a simple, multi-touch, multi-user screen interface that just might herald the end of the point-and-click era.</synopsis>
<genres>Design</genres>
<runtime>531</runtime>
</item>
and in showFeed.brs near the bottom:
item.SubtitleURL=validstr(curShow.srt.GetText())
item.SDBifUrl= validstr(curShow.sdBifUrl.GetText())
item.StreamFormat = validstr(curShow.streamFormat.GetText())
That _should_ do the trick, assuming you have a valid .srt file.
- Joel