Example 3: Videos#

Whether you are flipping the classroom, teaching online, face-to-face, or using a blended model, videos are an essential component of classrooms. Below are several ways of using videos to enhance instruction. Note that the examples below increasing in complexity and set-up time as you scroll down the page.

Scenario A: Embedding a hosted video#

Perhaps this is the most common scenario, where you want students to watch a video that is publicly hosted on a video sharing site such as YouTube, Vimeo, Twitch, etc…

../_images/youtube_embed.png

Fig. 3 To get the embed URL from a YouTube video, visit a YouTube video, click the “Share” button, and select the “Embed” option. Copy and paste the embed code into a markdown cell.#

Tip

Pro Tip: Check the “Enable privacy-enhanced mode” checkbox, and YouTube will do just be a tiny bit better about storing cookies on your students’ computers. The best option is to avoid YouTube altogether if you can!

TODO: Explain the way to enforce a 16:9 (or other) aspect ratio using css (_static/extra.css):#

<div class="container">
<iframe class="responsive-iframe" src="https://www.youtube-nocookie.com/embed/kKKM8Y-u7ds" frameborder="0" allow="accelerometer; autoplay="0"; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>

Instructions for embedding videos hosted on other platforms#

  • Vimeo

  • Twitch

  • Kaltura

  • Local file (Instructions coming soon)

    • In short, the file has to be hosted somewhere (server, dropbox, google drive) and then you can use the same embed trick

Scenario B: Video and a quiz#

If you happen to be teaching at UBC-Vancouver, you can book the Lightboard studio!

Short Quiz#

You may imagine giving students a short comprehension quiz after they watch a video to make sure they grasped the finer points of the lesson. You can also embed quizzes directly into your JupyterBook so it’s a seamless experience for the students. Here we will use Qualtrics, but other options are also possible!

The example quiz with automatic scoring below is from the University of Michigan Qualtrics wiki!

Making quizzes on Qualtrics#

Qualtrics has some extremely good resources on creating quizzes and automatically scoring them. There are sophisticated options for creating quizzes, I encourage you to check it out. At UBC and UBCO, we have an institutional license to Qualtrics, so you can even ask students to authenticate via CWL and collect student identification information. In other words - if used correctly - this is fully FIPPA compliant!

Authenticating Qualtrics surveys with CWL (or other SSO)#

To require students to autheticate via CWL (or other single-sign-on) before attempting a survey, have a look at this documentation page. If you’re at UBC or UBCO, you can set your Authenticator settings in Survey Flows like this:

../_images/qualtrics_sso.png

Fig. 4 SSO settings for a Qualtrics Survey; enabling this will require authentication before the survey can be accessed.#

Here’s the qualtrics survey embedded in the IFrame.

Scenario C: Quiz IN a video#

Scenario B is pretty good, but it’s still a bit clunky as the quiz and the video are separated. That is often a desired feature, especially if students want to come back and re-visit the quiz after thinking about the video.

Sometimes though, it would be good to pause the video and ask students one or several clicker-type questions, and give them some feedback.

This is where the Kaltura Video Service (and a few others) can help facilitate these types of interactions.

See an example below:

Kaltura Interactive quizzes are super easy to create (but it does take time!) and share with students. The UBC LTHub has some instructions and there is also a self-paced Kaltura training course with even more details.

References#

Coming soon!