"bisform" wrote:
Thanks for the replies. There is no link I can send as the videos are only available to paying subscribers. I can say that one of the customers having this problem just received her Roku 3 today and everything is running smoothly. The videos we offer are 720p and I know the Roku 2 says it can stream 720p but is there a different spec between them that could cause this. I do see the Roku 3 is 5x faster. Could that be the reason the Roku 3 streams fine while the Roku 2 is having difficulties?
Perhaps the Roku 2 users in question are using SD mode, and your channel is not handling that correctly. We had a similar problem and it turned out to be caused by not providing correct SD options to the player.
There are a few options that take
aligned arrays:
content["StreamBitrates"] = [0, 0]
content["StreamQualities"] = ["SD", "HD"]
content["StreamUrls"] = [properties.playlistUrl, properties.playlistUrl]
Notice the bitrates and urls are duplicated. This is because they must be specified for each quality and happen to be the same for both SD and HD modes.
Another important bit of info is that Roku 3's do not have SD mode, so that might explain why Roku 3's are unaffected. Your issue might be unrelated, but its worth checking.