sparkerman
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2015
01:19 PM
Remove Progress Bar
I would like to know how to remove the progress bar that displays each time a video loads.
I'm playing videos off a USB drive which is attached to my player. I'm also playing the videos using a roVideoScreen. Since the videos are essentlially being played back locally, I don't have the need to show a progress bar each time a video loads.
Thanks
Scot
I'm playing videos off a USB drive which is attached to my player. I'm also playing the videos using a roVideoScreen. Since the videos are essentlially being played back locally, I don't have the need to show a progress bar each time a video loads.
Thanks
Scot
11 REPLIES 11
destruk
Streaming Star
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2015
01:34 PM
Re: Remove Progress Bar
If you use roVideoPlayer instead of roVideoScreen, then there won't be a progress bar unless you program/create one.
sparkerman
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2015
01:48 PM
Re: Remove Progress Bar
I'm really new to how all this works and spent a lot of time developing my menus and video playlists using the roVideoScreen. All is working the way I want it to except for the progress bars. I'd hate to rewrite and problem solve everything by switching to a roVideoPlayer.
I was wondering if there was any bright script code that I can use within my other code to hide the progress bar.
I was wondering if there was any bright script code that I can use within my other code to hide the progress bar.
![TheEndless TheEndless](http://roku.permanence.com/images/sandman_endless_100x100.gif)
TheEndless
Channel Surfer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2015
01:55 PM
Re: Remove Progress Bar
You cannot disable the buffer screen of the roVideoScreen. If you switched to roVideoPlayer, you'd lose all trickplay capabilities unless you explicitly code them in.
Why is the buffer screen an issue for you? If you're playing back local content, I wouldn't expect it to be up too long, but even still, it's a good indicator of what the device is doing.
Why is the buffer screen an issue for you? If you're playing back local content, I wouldn't expect it to be up too long, but even still, it's a good indicator of what the device is doing.
My Channels: http://roku.permanence.com - Twitter: @TheEndlessDev
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)
sparkerman
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2015
02:18 PM
Re: Remove Progress Bar
I'm developing a playlist that is feed from a JSON file of about 50 individual video clips. All the videos start from black and fade up and end with a fade out to black. I would like all the videos to loop together so they appear seem less. The progress bar, though up for a short time, breaks that seamless look and feel I'm trying to accomplish. I also need the videos to loop continuously and display their captions until the user hits the back button. This will be used a our companies trade show.
I've developed all the code to do this. Being my first attempt at this was a big task for me. By switching to a different video player seems like starting over again. I guess I'll live what I got for now until my boss suggests to remove it.
Thanks for answers and fast responses! I appreciate it. I maybe asking help with the video player soon.
Thanks
Scot
I've developed all the code to do this. Being my first attempt at this was a big task for me. By switching to a different video player seems like starting over again. I guess I'll live what I got for now until my boss suggests to remove it.
Thanks for answers and fast responses! I appreciate it. I maybe asking help with the video player soon.
Thanks
Scot
![TheEndless TheEndless](http://roku.permanence.com/images/sandman_endless_100x100.gif)
TheEndless
Channel Surfer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2015
03:04 PM
Re: Remove Progress Bar
"sparkerman" wrote:
I'm developing a playlist that is feed from a JSON file of about 50 individual video clips. All the videos start from black and fade up and end with a fade out to black. I would like all the videos to loop together so they appear seem less. The progress bar, though up for a short time, breaks that seamless look and feel I'm trying to accomplish. I also need the videos to loop continuously and display their captions until the user hits the back button. This will be used a our companies trade show.
I've developed all the code to do this. Being my first attempt at this was a big task for me. By switching to a different video player seems like starting over again. I guess I'll live what I got for now until my boss suggests to remove it.
Thanks for answers and fast responses! I appreciate it. I maybe asking help with the video player soon.
Thanks
Scot
If you don't have the need for fast forward and rewind (which it doesn't sound like you do), switching to roVideoPlayer would give you what you're looking for, and shouldn't require more than a few minor changes. The interfaces are very similar. You'd just need to add an image canvas. Take a look at the video player example in the SDK.
My Channels: http://roku.permanence.com - Twitter: @TheEndlessDev
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)
Instant Watch Browser (NetflixIWB), Aquarium Screensaver (AQUARIUM), Clever Clocks Screensaver (CLEVERCLOCKS), iTunes Podcasts (ITPC), My Channels (MYCHANNELS)
sparkerman
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2015
03:13 PM
Re: Remove Progress Bar
I'll take a look.
Thanks
Thanks
destruk
Streaming Star
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2015
04:32 PM
Re: Remove Progress Bar
Another idea is to combine all the videos in your playlist into a single video - then the buffer bar would only show up when the entire video finishes to loop the single video.
sparkerman
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2015
04:41 PM
Re: Remove Progress Bar
"TheEndless" wrote:"sparkerman" wrote:
I'm developing a playlist that is feed from a JSON file of about 50 individual video clips. All the videos start from black and fade up and end with a fade out to black. I would like all the videos to loop together so they appear seem less. The progress bar, though up for a short time, breaks that seamless look and feel I'm trying to accomplish. I also need the videos to loop continuously and display their captions until the user hits the back button. This will be used a our companies trade show.
I've developed all the code to do this. Being my first attempt at this was a big task for me. By switching to a different video player seems like starting over again. I guess I'll live what I got for now until my boss suggests to remove it.
Thanks for answers and fast responses! I appreciate it. I maybe asking help with the video player soon.
Thanks
Scot
If you don't have the need for fast forward and rewind (which it doesn't sound like you do), switching to roVideoPlayer would give you what you're looking for, and shouldn't require more than a few minor changes. The interfaces are very similar. You'd just need to add an image canvas. Take a look at the video player example in the SDK.
What is the best way to show captions using the roVideoPlayer? I was able to show captions using the other method via a JSON feed but from what I read about roVideoPlayer the captions need to be called out.
sparkerman
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2015
04:44 PM
Re: Remove Progress Bar
"destruk" wrote:
Another idea is to combine all the videos in your playlist into a single video - then the buffer bar would only show up when the entire video finishes to loop the single video.
If I didn't have to add captions that would work great. With all the clips together it is about 1 hour in length. The clips have a tendency to change and the boss like to change the order at the last minute too. Rendering a new 1 hour clip is to much work not to mention editing a 1 hour .srt file with all new timecode!