Forum Discussion
9 Replies
- destrukStreaming StarThis is rather vague. Are you using Scenegraph or roImageCanvas or roScreen? Are you asking about a fullscreen jpg, background type uri, or thumbnail or bitmap/sprite graphic?
Anyway - you would add a line to the xml, and then parse the xml and download the value you read and display it or load it from the pkg:/ specifier.
For scenegraph to display it you would set a rectangle with the width and height and offset translation, and then tell it to display the image within that rectangle.
The video sample app with details sets the backgrounduri to the graphic so you can see how that works. - matrixebizRoku GuruOh, sorry, I would like to display a full screen image instead of a HLS or MP4 when the user clicks on the item icon.
The XML code below is what I use for both RSG and Brightscript; I tried changing <streamFormat>JPG</streamFormat> but that didn't work.
<item sdImg="pkg:/images/imagesd.png" hdImg="pkg:/images/imagehd.png">
<title>Video</title>
<description></description>
<streamFormat>hls</streamFormat>
<media>
<streamQuality>HD</streamQuality>
<streamBitrate>0</streamBitrate>
<streamUrl>http://server.com/master.m3u8</streamUrl>
</media>
<synopsis></synopsis>
<genres></genres>
<live>True</live>
</item> - destrukStreaming StarWhy would you not just specify the jpg file url in the xml feed, and then if there isn't a valid media tag then you'd know it's an image to display?
You can massively reduce the size of your xml if you remove tags you aren't using and remove the parsing lines to handle those empty fields - like a JPG file doesn't need media, streamquality,bitrate,description,streamformat,synopsis,genres,live, etc. You just need the image url and maybe a title if you want it, and add the size dimensions if you want to utilize those.
A big part of how roku works requires understanding how to read a file and manipulate text data within that file. - matrixebizRoku Guru
"destruk" wrote:
Why would you not just specify the jpg file url in the xml feed
Hello, I've been Googling for Roku XML files on the Internet that include jpg's but haven't found one so I don't know what the syntax would be 😞
Do I just call it in <url></url> Like below?<item sdImg="pkg:/images/imagesd.png" hdImg="pkg:/images/imagehd.png">
<title>JPG Image</title>
<description></description>
<url>http://server.com/Image.jpg</url>
</item> - destrukStreaming StarThe syntax would be anything you like, as long as your parsing routine is made to match what you pick. You wouldn't even need to use xml or json you could use text files for your channel if you want to. You could use your code there if you like - and program your channel to make use of it.
- matrixebizRoku GuruHello, is the "jpg parsing routine" in the RSG channel already? I wouldn't know what to change if not
but if it is, do you know what the syntax would be for me to use in the XML file to call it?
EDIT : I searched all the brs files in the components directory of the RSG channel and didn't find any reference to jpg, so looks like it is not configured to display jpg's
EDIT2 : Actually I didn't find hls in those files either so I don't know where the parsing code is. - JethroTSquirrelVisitorTo display a jpeg file, use a Scene Graph Poster node, which can easily be defined in XML. See: https://sdkdocs.roku.com/display/sdkdoc/Poster
- destrukStreaming StarTo locate the parsing code, look for the word "parse" in the brs or xml files, as parse, parsexml and parsejson are commonly used to do this.
- matrixebizRoku GuruOkay, thanks for the info, I'll run some tests.