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

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


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

Rudi
QPN Level 3 ●●●
Forum|alt.badge.img+16
  • QPN Level 3 ●●●
  • 162 replies
  • April 12, 2022

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

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

Rudi


Forum|alt.badge.img+1
  • 1 reply
  • February 20, 2024

@Rudi the link is not working. 


Forum|alt.badge.img+22
  • Level 7 ●●●●●●●
  • 2028 replies
  • February 21, 2024

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