I give students online English conversation practice online with the emphasis on extemporization: rather than allowing them time to write a script, they must answer my questions immediately.
In order that they don’t cheat I have used a player that allows them to play a short question video (the sound from which they must record at the start of their answer video) ONLY ONCE.
I used the code
<video controls=“controls” onplaying=“this.controls=false” autoplay=“autoplay”><source src=“URL/filename.mp4” type=“video/mp4”>
(The autoplay often did not work, but that does not matter. It does not need to auto play)
Now my university requires that I use the kaltura player and gives me the following code
From http://player.kaltura.com/docs/Chromeless
This is the code to get rid of the controls http://player.kaltura.com/docs/Chromeless#{"flashvars":{"controlBarContainer.plugin":false,"largePlayBtn.plugin":false,"loadingSpinner.plugin":false,"inlineScript":false}}
So in theory the following, would autoplay and have no controls to allow replaying (I am happy for there to be a loading spinner) &flashvars[autoPLay]=true&flasvars[controlBarContainer.plugin]=false&flasvars[largePlayBtn.plugin]=false`
like this (with my content) <iframe src="https://cak01fn.cc.yamaguchi-u.ac.jp/p/101/sp/10100/embedIframeJs/uiconf_id/23448408/partner_id/101?iframeembed=true&playerId=kaltura_player_1623900163033&entry_id=0_3b0repci&flashvars[autoPLay]=true&flasvars[controlBarContainer.plugin]=false&flasvars[largePlayBtn.plugin]=false" width=“320” height=“240” frameborder=“0” allow=“encrypted-media”>`
I’ve been trying to get autoplay to work after writing in the embed code when the user clicks on a static poster frame. Initially this didn’t work with &flashvars[autoplay]=true but in looking at your problem, I tried again with &flashvars[autoPlay]=true and that worked. It might be as simple as changing your autoPLay to autoPlay. I hope that works for you too.
More than a year later, because have been using another file system in the meantime, and yes! That did work. thank you for pointing out the capital “L.”
However, the in the middle of the video is still displayed, which is a shame, since students can press it and play the video again. Oh, and I would like to be able to remove the replay circular arrow too.
From the list of controls there is one for images to remove the video playback controls
which I added in this way (wondering if it is essential to keep adding “flashvars” over and over again or whether I could group them)
flasvars[ControllerScreenHolder.visible]=false;flasvars[ControllerScreenHolder.includeInLayout]=false
But the controls are still displayed.
This is what I have now.
Perhaps it is the lack of the “&”
I put that in and changed the order in case the problem was the way in which I am chaining the flashvars together.