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

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.


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?

“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.

All Roku players supporting a recent firmware release support all those standard as far as I can tell.

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