Forum Discussion
Extracting Text From Rise 360
You can just decode the course contents. It's encoded as Base64.
1.) Unzip the course.
2.) Open index.html in any editor.
3.) Search for window.courseData =
4.) You'll find a set of quote marks with a bunch of gibberish in between them. Copy everything within the quote marks.
5.) Go to https://www.base64decode.org/ and decode the gibberish.
6.) Go to https://unminify.com/ and unminify the decoded content. This will make it easier to read.
7.) Now you've got all of the text from inside your course, so you can grab the bits you need for the voice over. You can even make changes to it, then re-encode it as base64, put it back in to index.html and rezip your course.
Thank you so much for posting this tip and instructions. I have a Rise course with dozens of URLs that needed a quick update to a new server name. Much easier to do this way than one by one. Appreciated!