Forum Discussion
Can you speed up the player in Articulate 360?
- 2 years ago
Hello Everyone!
I'm happy to share that we have released Storyline 360 version 72 (Build 3.72.29654.0).
Included in this release is a new feature where you can let learners explore at their own pace by choosing a course playback speed between 0.25x and 2x.
Now all you need to do is update Storyline 360 in your Articulate 360 desktop app on your computer. You'll find our step-by-step instructions here.
Please let us know if you have any questions by reaching out to our Support Engineers directly.
Have a great day!
I've got some JavaScript code that will speed up and slow down audio playback in HTML5. I use a SL embedded variable reference ("playbackSpeed") to show on screen the playback speed. You can put these JS code bits on buttons and test it out:
//slow down
var player = GetPlayer();
var SLplaybackSpeed = player.GetVar("playbackSpeed");
if (SLplaybackSpeed>0.5) {
SLplaybackSpeed -= 0.25;
}
var myAudio = $("audio");
myAudio[0].playbackRate = SLplaybackSpeed;
player.SetVar("playbackSpeed",SLplaybackSpeed);
// speed up
var player = GetPlayer();
var SLplaybackSpeed = player.GetVar("playbackSpeed");
if (SLplaybackSpeed<2.00) {
SLplaybackSpeed += 0.25;
}
var myAudio = $("audio");
myAudio[0].playbackRate = SLplaybackSpeed;
player.SetVar("playbackSpeed",SLplaybackSpeed);
//
To control video, just replace the
var myAudio = $("audio");
with
var myVide = $("video");
What I'd like to see in tandem with this is to control timeline playback speed. Haven't cracked that one yet. Anyone have any ideas?