I have a media file that I want participants to listen to at one point in my Qualtrics survey. I see they have the option to change the playback speed. Is there a way to disable that?
Page 1 / 1
hey atorres1
maybe this thread also solves your problem :-)
https://community.qualtrics.com/XMcommunity/discussion/comment/44070
Best regards
Rudi
This JS will do that.
Qualtrics.SurveyEngine.addOnReady(function () {
const quest = this;
const qc = quest.questionContainer;
qc.querySelectorAll("video").forEach((item) => {
item.controlsList.add("noplaybackrate");
});
});
Alternatively, you could just add
controlslist="noplaybackrate"
to your video tag.
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.