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
0
votes
2 answers

How to clear the data from roRegistrysection Roku in developer mode

I am in between developing an roku app, which needs me me save and clear a key d. I am able to do it using roRegistrySection however when I delete the channel, still that key present which should not if I go through the documents which is below Roku…
Saty
  • 2,563
  • 3
  • 37
  • 88
0
votes
0 answers

Trackers on Roku

We are trying to get the trackers on the proxy(wireshark) we are getting all the trackers and their information on the brightscript debug console. But, there there is no impression of trackers such as first, midpoint, third, complete quarterlies on…
tdst
  • 1
  • 3
0
votes
1 answer

Roku, boot from a usb

So this is something I had in mind. Has anyone ever tried to boot a custom OS from a USB drive with Roku? (no matter which version, my house has pretty much all of them). Is it possible to do so? If not what's the reason?
asosnovsky
  • 2,158
  • 3
  • 24
  • 41
0
votes
1 answer

Roku https request failed

I have the below code to get data from my https website having godaddy certificate.but i unable to get the result from the url. port = CreateObject("roMessagePort") req =…
Shijin TR
  • 7,516
  • 10
  • 55
  • 122
0
votes
1 answer

How to get JSON values using variable in brightscript

I am trying to parse this JSON using a variable to represent the value, but it isn't working. I don't know if it is because the variable isnt representing the string or if I just can't do what I am trying to do. Function get_categoriesItems(category…
Joe Rocca
  • 178
  • 1
  • 10
0
votes
1 answer

how can i make a hex string from integer value in Brightscright?

I have written an Int 2 Hex function and was wondering if this is the best way https://gist.github.com/kaayr1m/cacd3432b53fd854b0de are there any other ways to do this? ' @param intValue positive integers from 0 onwards function…
Karim
  • 415
  • 6
  • 14
0
votes
1 answer

Roku: Infinite wait on POST request with roUrlTransfer

I am trying to send a POST request to an address with some parameters. The app is waiting on the port and not moving forward at all. What am I doing wrong and how do I fix this? Sub LoginUser() obj = {} obj.username = "scb@test.com" …
khateeb
  • 5,265
  • 15
  • 58
  • 114
0
votes
1 answer

Roku video playback fails in published app, works fine on dev

I'm facing a strange problem, my app which is essentially simple video player. Works perfectly fine when its a dev app side loaded via eclipse plugin. However when I package and publish it on Roku and then use it , it behaves strangely. First screen…
Abhijeet Apsunde
  • 552
  • 8
  • 21
0
votes
1 answer

Unspecified or invalid track path/url - Roku with Livestream.com stream

I'm developing a custom Roku channel and I need to use a livestream.com video stream from the following live stream event: http://livestream.com/accounts/11222132/events/3665575 Using their json service I've been able to obtain an m3u8 stream. The…
Ohiovr
  • 977
  • 1
  • 12
  • 22
0
votes
1 answer

Play Video with redirect url

In our channel we have a url to play videos that does a last check for authentication then redirects to the CDN url and that plays a video. This was all done over http in all of our test channels and works great. The problem is when we deployed to…
Scott Selby
  • 9,420
  • 12
  • 57
  • 96
0
votes
1 answer

Roku animation using animated sprites, how to create the tedious xml

I made a simple java script code to create the sprite sheet xml for the sprite animation in roku written in brightscript. Is there an easier way to just pass in the sheet and let it figure out the dimensions of the frame? That would be cool. I…
Karim
  • 415
  • 6
  • 14
0
votes
1 answer

Checking for button title overflows in Brightscript

In Roku's library, to add a button to a spring board screen, you use the method (see doc): AddButton(buttonID as Integer, title as String) as Boolean If title overflows the button width, it will automatically truncate the text and append "...". But…
Otavio Macedo
  • 1,542
  • 1
  • 13
  • 34
0
votes
2 answers

Change default font roFontRegistry in Roku

I have created a page with roImageCanvas ,and i am trying to change its default font with another one.bellow is my code but this won't work.Please help me to resolve this error.thanks in advance. canvas = CreateObject("roImageCanvas") port =…
Shijin TR
  • 7,516
  • 10
  • 55
  • 122
0
votes
1 answer

Adjust spacing between text lines brightscript

Bellow is the code to show a string in Roku using roImageCanvas canvas = CreateObject("roImageCanvas") port = CreateObject("roMessagePort") canvas.SetMessagePort(port) items = [] items.Push({ Text: "Lorem Ipsum is simply dummy text of…
Shijin TR
  • 7,516
  • 10
  • 55
  • 122
0
votes
4 answers

Convert seconds to Hour:Minute:Second brightscript

I need to convert seconds to Hour:Minute:Second. For example: 685 converted to 00:11:25 How can I achieve this? I can't find a method from brightscript…
Shijin TR
  • 7,516
  • 10
  • 55
  • 122