Questions tagged [roku]

"Roku" is a video streaming player and platform, developed and sold by the company "Roku, Inc."

[Roku, Inc.][1] was founded in 2002 by Anthony Wood, the founder of ReplayTV (one of the first DVRs). "Roku" means six in Japanese, a reference to this being the 6th company that Wood has launched.

Roku Inc develops both the hardware and software for the eponymous Roku platform. The company manufactures and sells the [Roku][2] set-top boxes - as well as licenses the platform to manufacturers (e.g. Hisense, TCL, Insignia, Sharp) of "RokuTV" smart TVs.

Development for the Roku platforms is done primarily through BrightScript, a scripting language very similar to Visual Basic. A sister company - BrightSign - uses Brightscript for their commercial sign and display products.

More information can be found at http://www.roku.com

[1] https://en.wikipedia.org/wiki/Roku,_Inc.

[2] https://en.wikipedia.org/wiki/Roku

496 questions
3
votes
2 answers

How to host an htm5 app on a private channel on "Roku"?

I am just starting with development for "Roku". I want to know How can I host an html5 app on private channel on Roku. To get started I have created a a private roku channel from https://www.instanttvchannel.com and have even installed on my roku…
G droid
  • 956
  • 5
  • 13
  • 36
3
votes
3 answers

Background color of roMessageDialog

In Roku BrightScript, is there any way to change the background color of popup dialogs such as roMessageDialog to a dark blue color, instead of the default gray? It is possible to change the text color through the attributes DialogBodyText and…
Pieter Siekerman
  • 461
  • 3
  • 14
3
votes
1 answer

How does the roTextureManager image cache behave?

Does the roTextureManager clear or replace bitmaps in its cache automatically when it sees that it is running out of memory? I cannot seem to find any good answer to this.
Karim
  • 415
  • 6
  • 14
3
votes
1 answer

URL Encoding a variable for a web service call on Roku

I need to URL encode a variable that is being passed into a web service. testcategory = "Action and Adventure" jsonRequest = CreateObject("roUrlTransfer") jsonRequest.SetURL("http://myurl.com/?method=getRokuCategorizedSeriesListing&category=" +…
Josh Scott
  • 3,790
  • 7
  • 29
  • 31
2
votes
1 answer

Roku app exits without error on second roMessagePort wait

This is the smallest snippet I've been able to get to reproduce the issue. Sub Main() u = getStringFromKeyboard("Enter username") p = getStringFromKeyboard("Enter password") End Sub Function getStringFromKeyboard(message = "" As String) As…
Alex Howansky
  • 50,515
  • 8
  • 78
  • 98
2
votes
0 answers

Roku ECP media-player query issue for Netflix channel

The Roku ECP api provides a mechanism for querying the Roku device for the current state of the media player in the currently active channel. The URL http://192.168.1.1:8060/query/media-player ...returns a response that looks something like
Daniel
  • 55
  • 5
2
votes
0 answers

how to reroute http request in Roku Player for removing the headers?

I am trying to pass Headers with the HLS stream. Below is the sample Stream. https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8?Params=1 But, It takes in both m3u8 and ts. I only need to pass this in m3u8. I need to reroute the request…
2
votes
1 answer

How to discover Roku device from within an Android app in order to cast

I am developing an app that has some video content that can be cast over WiFi to other devices (like smart TV). The logic for casting to smart TV, Android TV, or Google Chromecast has been implemented and it works. There is the same app for Roku and…
Glimpse
  • 392
  • 5
  • 20
2
votes
1 answer

Images not loaded, When I update a content in PosterGrid

I used Custom SGDex View in MainScene and Using the below code, I have opened the dialog box inside PostGrid. It's Extends With the Group node. sub init() m.postergrid = m.top.findNode("PosterGrid") m.top.GlobleURL = GetAuthData("URL") …
2
votes
1 answer

Roku ParseJSON gives Unknow Identifier error when loading json via AJAX

I'm trying to write a simple Roku application. When I load the JSON file via roURLTransfer ParseJSON function gives me BRIGHTSCRIPT: ERROR: ParseJSON: Unknown identifier. If I load the JSON file via ReadAsciiFile("pkg:/feed/feed.json") it works. The…
Farid Rn
  • 3,167
  • 5
  • 39
  • 66
2
votes
1 answer

Execution time out in task node

I'm getting the issue(Execution TimeOut) with the Task node. I created one Timer in the Scene node for Continuous Execute Function Here I Tried With Continuous Response Update With Task node and After It used in Scene Node. 'Timer m.Update =…
2
votes
0 answers

Read JSON Data From Browser in Roku

I tried to read multiple JSON files from the browser. The same thing uses with XML in the below code. sub getcontent() content = createObject("roSGNode", "ContentNode") contentxml = createObject("roXMLElement") if m.top.contenturi.left(4) =…
2
votes
2 answers

Pulling Bandwidth logs from Roku

Due to the nature of my job, my customers often stream media over a high latency network. Usually see around 700ms - 1000ms. The situation is customers streaming video over a KA satellite network in a business jet. They use a Roku with various…
2
votes
1 answer

2D Array in Roku

It is possible to create 2D Array. I used m.value = CreateObject("roArray", 0 , true) But It's only create a one dimensional array. Here I create only single Row and multiple Column 0 1 2 3 I tried to create a 2D array in Roku. Here I tried to…
2
votes
1 answer

Is it possible to extend an Interpolator?

I'm trying to extend a Vector2DFieldInterpolator in order to make a smooth arc animation given three points (start, end, and a point inbetween). I've gotten it to work by setting the key and keyValue fields on a regular Vector2DFieldInterpolator,…
MMAdams
  • 1,508
  • 15
  • 29
1 2
3
33 34