Closed caption feature for rise video is one of the important functions. Do we have a timeline to include this features in Rise. Using storyline block may not be a option here as we can reduce production time by direct use of this feature inside Rise.
Thanks for your feedback! Unfortunately, I don't have an ETA on the closed caption feature request. However, I'll add your voice to the discussion and share any updates with you via this thread.
In the meantime, if there's anything else I can do to help, please let me know!
For anyone looking to add Closed Captions after publishing you can do it with this code. You will need to inspect the video element in your console to grab the video's ID or you can alter the code to do it another way.
Add the code to your published file at the top of the index.html page. After the following tags: <script type="text/javascript" src="tc-config.js"></script> <script type="text/javascript" src="lib/tincan.js"></script> <script type="text/javascript" src="lib/lms.js"></script>
<script>
setTimeout(function() {
var videoScript = '<track id="enTrack" src="PUT YOUR CAPTION SOURCE FILE URL HERE" label="English" kind="subtitles" srclang="en" default="">'; //replace the src with your caption location document.getElementById("PUT THE VIDEO'S ID HERE").innerHTML = videoScript; //replace the element ID with whatever your video's element ID is
3 Replies
Hi SibaPrasad,
Thanks for your feedback! Unfortunately, I don't have an ETA on the closed caption feature request. However, I'll add your voice to the discussion and share any updates with you via this thread.
In the meantime, if there's anything else I can do to help, please let me know!
For anyone looking to add Closed Captions after publishing you can do it with this code. You will need to inspect the video element in your console to grab the video's ID or you can alter the code to do it another way.
Add the code to your published file at the top of the index.html page. After the following tags:
<script type="text/javascript" src="tc-config.js"></script>
<script type="text/javascript" src="lib/tincan.js"></script>
<script type="text/javascript" src="lib/lms.js"></script>
we will be trying this very soon! thanks Melissa