Hi, I want my students to click on a text, then they can listen to the pronunciation.
I have tried to put an audio link from Google translation, but after I publish the activity, the link doesn’t work. It says “can’t open the page”.
Is there any way that I can upload the mp3 file to a slide and makes it work as a “link”?
Thank you very much!
Where is the link pointing to? Where are you hosting the mp3?
You can’t embed audio. You could post links, but it would open a new tab.
Teach them to use Google translate?
You could also embed it as media and use the video container as a media object that would simply play the audio.
It’s not a supported file type, so the media component won’t accept it.
Thank you, everyone!
So now I get the confirmation that audio is not supported.
(using another tab to do Google translating can be a distraction and a challenge for some students who have special needs.)
It is supported indirectly through video - you just need to convert the mp3 it to mp4 or whatever video format you like(.mp4, .avi are some types that Desmos supports).
There are many many online conversion tools that will do that for you.
2 Likes
Is it possible then to start video component playing an mp4 file in any other way rather then pressing the Play button in the middle of it?
I would like to play a short audio clip (about 10 seconds) when students achieve a goal.
Welcome @Alexander_3691. Something like below would allow you to run the clip based on correctness and a button click (It could be an action button or input submit button). I also have it hidden first because it still shows the playhead when visible.
in = input
time = in.timeSinceSubmit()
# Change to reference a correct variable or different correctness condition
disable = not(in.numericValue = 10) or time = 0
hidden: disable
time: when disable 0 otherwise time
Thank you for the response; I managed to do a similar script myself but, for some reason, the video would start and the audio would not.