See the Media for your Course web page for all the information you need to know about recording and selecting media for your course.
Ensure media player is keyboard accessible
We know that YouTube and the Online Learning’s streaming media players are keyboard accessible players. The other advantages to these players are that they optimize the video streaming to the user’s best settings.
If you are using a different video player, please test it to make sure it can be used by those who cannot use a mouse.
Whatever the operation or behavior, make sure a mouse is not required.
Use the following keyboard keys to navigate and interact with the web page all of its content:
Tab
Arrow keys
Enter
Spacebar
Try to navigate to the video player.
Keyboard commands clearly provided (and common operating system and browser keyboard commands) may also be used
Could you complete the course without using a mouse?
Note: Our user evaluations have found Screencast and Screencast o matic video players to be difficult to use for people with disabilities.
Video captioning
Instructors are not expected to caption/subtitle videos or transcribe audio. Of course it’s great if you select a captioned video.
In the case of accommodations for students with disabilities, the instructor will receive a faculty notification letter with instructions on how to get all media for the course captioned/transcribed in time for class use. Faculty should respond quickly to this notification, so captioning can be completed by DS and OL before the media is needed in the course. Important:Do not release any modules with uncaptioned video or untranscribed audio, if you have a student with a captioning accommodation. Wait until all media is captioned or transcribed before releasing that week’s module.
Captioning does have many pedagogical benefits. Below are a variety of methods for providing captions in different situations.
Captioning has its own set of grammatical rules. While an accurate transcript on it’s own will be greatly appreciated by your students, you may want to take your efforts a step further by referencing the Captioning Key. Topics addressed in the key include:
Kaltura will automatically generate captions for a video you upload to My Media. You can edit these for accuracy or replace them with another caption file.
In the My Media tab, click the pencil icon to the right of the video you want to edit. The button will be labeled “edit (File name)”
Select the Captions tab
Select either “edit captions” or “upload caption file”
For videos hosted online that you do not own, you can add captions using Amara Public. To create text-to-speech audio description files for use with able player, select “Metadata: Audio Description” as the language and download your completed descriptions as a .vtt.
Unlike Youtube and My Media, google drive does not automatically generate a caption track for your uploaded videos. You can add captions that you have created elsewhere to your google drive video.
Describe the visual elements that are the most essential to the viewer’s ability to follow, understand, and appreciate the program’s curricular content.
Describe from general (global) to specific (local).
Describe additional details as time permits, but don’t try to fill every last moment with description.
Describe shape, size, texture, or color as appropriate to the comprehension or appreciation of content.
Consistently identify people and characters by name or obvious physical attribute (if no name is provided).
Describe discernable attributes and expressive gestures, but don’t interpret emotion or reasoning.
Convey scene changes and the passage of time if it aids in the comprehension of the program.
If time permits, describe montages of images (moving or still) that often serve a supporting role.
Use vocabulary that is meaningful to students who are blind or visually impaired.
Describe visual action or movement in terms of the viewer’s body.
Describe shapes, sizes, and other essential attributes of objects by comparison to objects that are familiar to the intended audience.
Deliver description in present tense, active voice, and in third-person narrative style.
Speak clearly and at a rate that can be understood. Use the existing program audio as a guide.
Avoid describing over audio that is essential to comprehension (do so only when necessary).
Voice descriptions in conjunction with or before (but never after) the relevant visual content is onscreen.
Match vocabulary to the program, avoiding jargon.
Wait until technical vocabulary has been introduced in the program before using it in description.
Voice descriptions in complete sentences if possible.
Describe objectively, without interpretation, censorship, or comment.
Describe the source of sounds that are not immediately recognizable in the program context.
If you have a student or are a student (registered with Accessible Ed & Disability Resources) who requires captioning in an online (synchronous) meeting, make arrangements for a captioner.
Contact Melanie.deleon@pcc.edu [opens in new window] from Accessible Ed & Disability Resources to request a transcriber. (We use a service called TypeWell which provides a meaning-for-meaning transcript. We do use CART services when appropriate)
Set up a session to practice this before students arrive and while technical assistance (like the Faculty Help Desk) is available.
In a Zoom meeting that you are hosting click Closed Caption, located in the bottom control panel, and select Assign a participant to type.
In the participants window, hover over your transcriber’s name and click More and Assign to type closed Caption
“Re-state” math problems by typing them into the whiteboard or chat before completing the problem.
Make arrangements with your instructor for a transcriber at least a few business days before the session.
After entering/logging into the session, choose “Show Closed Captioning” (Ctrl/Cmd + F8) from the Collaborate Window menu, to open the captioning window. After it’s open, just wait for captioning to begin.
Don’t close the transcribing window- you will lose the transcript history.
Ask your instructor or the moderator of the session to Record the session. That will record all the captions, even if you closed the captioning window mid-session.
Using Able Player
Within D2L, you can use Able Player to add captions or audio description to any video on YouTube, Vimeo, or directly saved to Course Content.
This tool is for advanced users who are comfortable editing html directly.
Have your caption or audio description files prepared in .vtt format before you begin.
If you are using multiple Able Player embeds in one file, be sure to increment the “video id” value for each subsequent video.
In the header section of your html, add the following code: <!-- Vimeo JavaScript -->
<script src="https://player.vimeo.com/api/player.js"></script>
Find the video id. This will be in the web address for the video.
The ID for https://vimeo.com/214065299 is “214065299”
In the body of your html file, add the following code where you would like the video to appear, replacing the video id <div style="margin: auto; max-width: 640px; width: 95%;">
<video id="video1" data-able-player data-skin="2020" preload="auto" data-vimeo-id="214065299">
<!--Caption tracks go here -->
</video>
</div>
Upload your file directly to your course shell under “manage files”
In the body of your html file, add the following code where you would like the video to appear, replacing the source path to match the location of your video.
Upload your caption files in .vtt format directly to your course shell under “manage files”
Before the closing video tag (</video>) add the following line of code, replacing the source path to match the location of your file: <track kind="captions" src="/content/enforced/123456-my-course/Accommodations/MyLecture.vtt" />
You can include captions in multiple languages. Use the following code for each language, adjusting the language code and labels: <track kind="captions" src="/content/enforced/123456-my-course/Accommodations/MyLecture.vtt" srclang="en" label="English" />
Able Player allows for text-to-speech audio description, using a captions file.
Upload your audio description in .vtt format directly to your course shell under “manage files”
Before the closing video tag (</video>) add the following line of code, replacing the source path to match the location of your file: <track kind="descriptions" src="/content/enforced/123456-my-course/Accommodations/MyLectureDesc.vtt" />