Roku Developer Program

Join our online forum to talk to Roku developers and fellow channel creators. Ask questions, share tips with the community, and find helpful resources.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
jnicholas
Visitor

Which servers can stream to Roku currently?

I've started developing for Roku and have a simple application working. The only way I've been able to get our own video content to play is from an Apache server. I also tried to get Wowza to stream to it since it supports HTTP Streaming but that didn't work. Do any media servers work yet for true streaming? I'm guessing from other threads that HTTP Streaming is coming soon?
0 Kudos
6 REPLIES 6
RokuMarkn
Visitor

Re: Which servers can stream to Roku currently?

HTTP Live Streaming is coming but is not yet supported. Is that what you mean by "true streaming"?

All of the currently supported media types should work with any standard HTTP server, as long as it supports byte range requests. The same is actually true for HTTP Live Streaming as well.

--Mark
0 Kudos
jnicholas
Visitor

Re: Which servers can stream to Roku currently?

I'm used to my videos coming from either Flash Media Server (or a work-alike like Wowza) or Quicktime Streaming Server so I'm not used to using Apache or IIS for media. I associated that with just doing progressive downloads. My experiments with even long videos seem to work fine though.
0 Kudos
jnicholas
Visitor

Re: Which servers can stream to Roku currently?

There are a couple of features that I expect from media servers that I'm not sure if they can be mimicked with apache. First is dynamic stream switching, if the users bandwidth gets tight can we seamlessly shift down to a lower bandwidth stream? Second would be the ability to start at an arbitrary point. For example out of a 2 hour show could we have a way to jump straight to the 55 minute mark so a user could skip to the segment they are interested in?
0 Kudos
bcl
Channel Surfer

Re: Which servers can stream to Roku currently?

You can define a starting point in the metadata passed to roVideoScreen. I think Netflix uses this for remembering where you last played a stream instead of always starting over from the beginning.
0 Kudos
RokuMarkn
Visitor

Re: Which servers can stream to Roku currently?

"jnicholas" wrote:
There are a couple of features that I expect from media servers that I'm not sure if they can be mimicked with apache. First is dynamic stream switching, if the users bandwidth gets tight can we seamlessly shift down to a lower bandwidth stream? Second would be the ability to start at an arbitrary point. For example out of a 2 hour show could we have a way to jump straight to the 55 minute mark so a user could skip to the segment they are interested in?


You can start playing at an arbitrary point, assuming the video format provides the required indexing information (MPEG4 files always do, ASF/WMA files do if the file contains a Simple Index Object). Bookmarking and seeking use this feature.

If you provide multiple streams at different bandwidths, the Roku will switch between them when the user's bandwidth changes. For most currently supported formats, the switch involves a rebuffering event so it's not seamless. When HTTP Live Streaming is available it will provide seamless bandwidth switching.

--Mark
0 Kudos
dellsweig
Visitor

Re: Which servers can stream to Roku currently?

"RokuMarkn" wrote:
"jnicholas" wrote:
There are a couple of features that I expect from media servers that I'm not sure if they can be mimicked with apache. First is dynamic stream switching, if the users bandwidth gets tight can we seamlessly shift down to a lower bandwidth stream? Second would be the ability to start at an arbitrary point. For example out of a 2 hour show could we have a way to jump straight to the 55 minute mark so a user could skip to the segment they are interested in?


You can start playing at an arbitrary point, assuming the video format provides the required indexing information (MPEG4 files always do, ASF/WMA files do if the file contains a Simple Index Object). Bookmarking and seeking use this feature.

If you provide multiple streams at different bandwidths, the Roku will switch between them when the user's bandwidth changes. For most currently supported formats, the switch involves a rebuffering event so it's not seamless. When HTTP Live Streaming is available it will provide seamless bandwidth switching.

--Mark


Thanks for the tease - any ETA 🙂
Going where the wind don't blow so strange
0 Kudos