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

Is there a way to disable participants' ability to change the playback speed on media files?

  • 12 April 2022
  • 3 replies
  • 254 views

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?


3 replies

Userlevel 4
Badge +16

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

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

Rudi

Badge +1

@Rudi the link is not working. 

Userlevel 7
Badge +21

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