johnmarsden
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-05-2018
02:56 PM
Are the closed captions broken in firmware 8.0?
The Roku 8.0 release notes say:
Ever since the release of 8.0, the captions in my app are no longer working. They were working before. I'm externally loading SRT files by using the SubtitleConfig and SubtitleTracks params on the video content. Sorta like this:
The TrackName is set to be the URL of the SRT file which exists in both the SubtitleConfig object and the SubtitleTracks list.
This method was working up until lately, but now it's not.
Did something change? Is this a bug?
- Closed Captions are now displayed with a more consistent on-screen appearance across streaming channels.
- Fixed a bug in which closed captions would occasionally not appear in some streaming channels after an advertisement was played.
Ever since the release of 8.0, the captions in my app are no longer working. They were working before. I'm externally loading SRT files by using the SubtitleConfig and SubtitleTracks params on the video content. Sorta like this:
vidContent.subtitleTracks = m.top.content.SubtitleTracks
vidContent.subtitleConfig = m.top.content.SubtitleConfig
player.content = vidContent
The TrackName is set to be the URL of the SRT file which exists in both the SubtitleConfig object and the SubtitleTracks list.
This method was working up until lately, but now it's not.
Did something change? Is this a bug?
3 REPLIES 3
Veeta
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2018
09:38 AM
Re: Are the closed captions broken in firmware 8.0?
What works for us with firmware 8.0 is:
tracks = [
{ description: "Track 1", trackname: srtUrl }
]
content.subtitleTracks = tracks
content.subtitleConfig = { trackname: srtUrl }
johnmarsden
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2018
12:43 PM
Re: Are the closed captions broken in firmware 8.0?
Is that working for you right now? Because that's exactly what I have and had.
johnmarsden
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2018
02:12 PM
[solved] Re: Are the closed captions broken in firmware 8.0?
Nevermind. Turns out one of my language files had some invisible characters in it that was probably from saving it wrong.. it messed with the captions so it wouldn't work.
Weird bug.
Everything works as expected.
Weird bug.
Everything works as expected.