Published: 2015-09-29 04:37 |
Category: Tips |
The Problem
If you’ve ever been in a situation where substitute teachers can log onto the computer but not do much with the Internet other than take attendance, it can make sub plans hard to pull together, especially if you want students to see a video. This is doubly true if you’re not in 1:1 environment where students can just pull it up on their own.
Over the last couple years, I’ve added an “absent” section to my class website to hold instructions for the sub. I’d make a video, put it on YouTube, and then put it on the site for the sub to play for the class. Once it’s set up, I just update the video and the instructions.
This requires two things: an Internet connection which allows for YouTube and one that allows external sites to be displayed. Neither can be done currently.
The Fix
I got around access issues by simply creating a local copy of the website and putting it on a flash drive. Modern web browsers can have video embedded directly in the HTML using the video tag, which makes the process much simpler.
But what if you don’t know how to write HTML or CSS, like this method requires?
I’ve created a template to do it for you.

Using the Templatizer
It’s a pretty simple tool for you to use. The challenge with these things is always to reduce the number of steps and clicks for general users. The point is to give you a fully-functioning website without knowing any code.
To use the templatizer:
- enter your class name, which becomes the title of the generated page.
- This step is very important – enter the filename of the video exactly as you have it on your hard or flash drive. The code needs media to reference, so if you put the wrong file, it won’t work. This only works with mp4 files for the moment. Also, try to avoid spaces in the filename because they can cause some wonkiness.
- Include any written directions you’d like shown below the video. If you don’t put anything here, nothing shows. This is unformatted text – bullets and other items won’t show up, so keep it simple.
When you’re finished, click on “Create and Download Page” button to download your shiny new website.
Once you have the file, you need to move it to the folder with the video. They must be in the same folder to work correctly. For me, I put these files in a folder call absent on the flash drive to make things easier on the sub.
The Result
Now, once the downloaded file and video are in the same place, open it up to test your page. You’re looking for two things – that the video plays and that the file is really being called from the filesystem, not the Internet.
Your browser address bar should have something similar to this if it’s from the flash drive:

It’s not perfect and limited to MP4 video right now, but it works. It solves a problem for me and I hope it can do the same for you.