Roku Developer Program

Join our online forum to talk to Roku developers and fellow channel creators. Ask questions, share tips with the community, and find helpful resources.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
jaxim
Visitor

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
0 Kudos
4 REPLIES 4
jaxim
Visitor

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.


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?
0 Kudos
Joltarin
Channel Surfer

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
0 Kudos
RokuCC
Binge Watcher

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.
0 Kudos
RokuCC
Binge Watcher

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
0 Kudos