
bbrouse
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2017
07:32 AM
Captions in video node don't start displaying on start of video playback
We're trying to convert our channel to use the scene graph video node instead of legacy video objects. We need to support closed captions on all episodes, but are running into some trouble.
We have tried both side loading srt subfiles in the subtitleConfig field of the content meta-data and embedding the captions in the smooth stream manifest itself. In both cases the closed captions do no display at the start of video playback; they only display if you pause or fast forward and even then they don't start to display until many minutes later.
I'm currently testing on a Roku model 4230X - Roku 3 on firmware version 7.5.0 build 4100-04
We have tried both side loading srt subfiles in the subtitleConfig field of the content meta-data and embedding the captions in the smooth stream manifest itself. In both cases the closed captions do no display at the start of video playback; they only display if you pause or fast forward and even then they don't start to display until many minutes later.
I'm currently testing on a Roku model 4230X - Roku 3 on firmware version 7.5.0 build 4100-04
3 REPLIES 3

bbrouse
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2017
01:01 PM
Re: Captions in video node don't start displaying on start of video playback
I noticed that the subtitleTrack field on the video node doesn't get populated by default, even if the global caption settings are set to "On". I threw this conditional in and captions are now displaying consistently:
if video_player.availableSubtitleTracks.count() > 0 then
video_player.subtitleTrack = video_player.availableSubtitleTracks[0].TrackName
end if
destruk
Streaming Star
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-10-2017
04:17 PM
Re: Captions in video node don't start displaying on start of video playback
Thanks for posting about this.
lylyahiko
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2019
10:08 AM
Re: Captions in video node don't start displaying on start of video playback
Is this the only way to force the captions to start by default?