Is there a way to disable participants' ability to change the playback speed on media files? | XM Community
Skip to main content

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?

hey atorres1
maybe this thread also solves your problem :-)

https://community.qualtrics.com/XMcommunity/discussion/comment/44070
Best regards

Rudi


@Rudi the link is not working. 


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