jaxim
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2017
06:04 AM
How to enable closed captioning w/ Video node
What is the the BrightScript code to enable subtitles if I am using a video node as my video player? I've attempted to enable the player by setting globalCaptionMode to "On"; however the subtitles do not appear.
Also, what formats of closed captioning are supported? Is it only SMPTE-TT, EIA-608, WebVTT as it is indicated on the following documentation URL? The same documentation page makes reference that SRT is available on legacy Roku platforms. However, does this mean that the SRT format not available on all Roku devices?
https://sdkdocs.roku.com/display/sdkdoc/Closed+Caption+Support
Also, what formats of closed captioning are supported? Is it only SMPTE-TT, EIA-608, WebVTT as it is indicated on the following documentation URL? The same documentation page makes reference that SRT is available on legacy Roku platforms. However, does this mean that the SRT format not available on all Roku devices?
https://sdkdocs.roku.com/display/sdkdoc/Closed+Caption+Support
4 REPLIES 4
jaxim
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2017
09:10 AM
Re: How to enable closed captioning w/ Video node
Below seems to be the care minimum code to enable the closed captioning. I tested a track with a SRT file and it worked, so it appears Roku also supports SRT files.
The additional question I have is that I noticed in some apps, when I click the options button, a closed captioning menu appears. Is this a menu that the app developer created or is this a Roku-made menu that the developer can enable?
videoContent = createObject("RoSGNode", "ContentNode")
videoContent.SubtitleConfig = {
ShowSubtitle: 1,
TrackName: "URL2ClosedCaptioningFile"
}
m.video.content = videoContent
m.video.globalCaptionMode = "On"
The additional question I have is that I noticed in some apps, when I click the options button, a closed captioning menu appears. Is this a menu that the app developer created or is this a Roku-made menu that the developer can enable?
Joltarin
Channel Surfer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2017
05:10 PM
Re: How to enable closed captioning w/ Video node
"jaxim" wrote:
The same documentation page makes reference that SRT is available on legacy Roku platforms. However, does this mean that the SRT format not available on all Roku devices?
https://sdkdocs.roku.com/display/sdkdoc/Closed+Caption+Support
No, to me it means that SRT is the only format supported by all Roku players and Roku TVs (and that newer models support additional formats). FYI, the WebVTT standard is based on SRT.
Roku Premiere+ (4630RW), Roku 3 (4200X), and Roku 2 XS (3100X) with Plex

RokuCC
Binge Watcher
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2017
11:45 AM
Re: How to enable closed captioning w/ Video node
All Roku players supporting a recent firmware release support all those standard as far as I can tell.

RokuCC
Binge Watcher
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-07-2017
12:45 PM
Re: How to enable closed captioning w/ Video node
for the original question:
Video node has a field called "content "
This content has SubtitleTracks, which needs to be populated with side loaded tracks. The demultiplexers for the different container formats will add tracks too.
(video node field availableSubtitleTracks will show the complete set).
Special case is eia608 which needs to be added to SubtitleTracks to kick-start the software so it will start searching for these tracks.
SubtitleConfig in the content and the video node's subtitleTrack allows a channel to select a track. This is not recommended in 8.0 since it may get in the way of automatic track selection based on the "preferred caption language" menu item.
relevant documents:
https://sdkdocs.roku.com/display/sdkdoc ... +Meta-Data
https://sdkdocs.roku.com/display/sdkdoc/Video
Video node has a field called "content "
This content has SubtitleTracks, which needs to be populated with side loaded tracks. The demultiplexers for the different container formats will add tracks too.
(video node field availableSubtitleTracks will show the complete set).
Special case is eia608 which needs to be added to SubtitleTracks to kick-start the software so it will start searching for these tracks.
SubtitleConfig in the content and the video node's subtitleTrack allows a channel to select a track. This is not recommended in 8.0 since it may get in the way of automatic track selection based on the "preferred caption language" menu item.
relevant documents:
https://sdkdocs.roku.com/display/sdkdoc ... +Meta-Data
https://sdkdocs.roku.com/display/sdkdoc/Video