Guidebook
Generator of an Accessibility Statement
LMS Check
  • Text Content
    • General Information on Texts
    • Headings
    • Paragraphs
    • Quotations
    • Lists
    • Tables
    • Cross-references
    • Links
    • Formulas
    • Code
  • Color
    • Use of Color
    • Contrast of Texts
    • Contrast of Buttons and Graphics
  • Images and Graphics
    • Informative and Functional Images
    • Decorative Images
  • Audio Elements
    • Formatting Audio Elements
    • Media Alternatives for Audio Elements
    • Mediaplayer
  • Video and Animation
    • Videoplayer
    • Caption
    • Audiodescription
    • Full-Text Alternative
    • Embed Video
  • Interactive Elements
    • Accordeon
    • Interactive Image
    • Map
    • Buttons
    • Form Fields
    • Custom Elements
    • JSX-Graph
  • PDF
    • Export PDF Document
    • Post-Processing with Adobe Acrobat Pro
    • Accessibility Check
  • Course layout
    • Stylesheets (CSS)
    • Scripts (JS)
  • Accessibility Testing
  • Upload Accessibility Statement to LMS
    • Create
    • Update

Caption

The following criteria are taken from the checklist:
  • If the audio track of a video contains information, captions are provided as an alternative.
  • Captions and sound are displayed synchronously.
  • There are only videos with original sound in the main language of the course. If not, there are switchable captions in the main language that can be accessed as a separate audio track.

People with hearing impairments rely on captions to fully understand video content. However, captions can also help people learn a foreign language or make it possible to watch videos in noisy environments. In order to capture all content correctly, captions and the associated sound and image must be displayed synchronously. If there are foreign language sections in the audio track, these should be translated in the captions.

Create Captions

Create manually

  • Create a text file in a text editor (e.g. Notepad or Editor)
  • First Line: WEBVTT
  • Time periods for caption sections: 00:01.000 --> 00:05.000
  • Insert captions directly below
  • Blank line between sections
  • Save as: "videoname-languagekey.vtt", for example myvideo-en.vtt

Create with Video Editor

  • Video platforms such as YouTube often offer mechanisms for automatic creation.
  • More information on this can be found in the instructions for video platforms in the "Insert captions" section.

Create Captions

YouTube

Step-by-step instructions: Add subtitles & captions

Videocampus Sachsen

Step-by-step instructions: Videocampus Saxony: Creation of captions for videos (TU Chemnitz)

The following criteria are taken from the checklist:
  • If the audio track of a video contains information, captions are provided as an alternative.
  • Captions and sound are displayed synchronously.
  • There are only videos with original sound in the main language of the course. If not, there are switchable captions in the main language that can be accessed as a separate audio track.

People with hearing impairments rely on captions to fully understand video content. However, captions can also help people learn a foreign language or make it possible to watch videos in noisy environments. In order to capture all content correctly, captions and the associated sound and image must be displayed synchronously. If there are foreign language sections in the audio track, these should be translated in the captions.

Create Captions

Create manually

  • Create a text file in a text editor (e.g. Notepad or Editor)
  • First Line: WEBVTT
  • Time periods for caption sections: 00:01.000 --> 00:05.000
  • Insert captions directly below
  • Blank line between sections
  • Save as: "videoname-languagekey.vtt", for example myvideo-en.vtt

Create with Video Editor

  • Video platforms such as YouTube often offer mechanisms for automatic creation.
  • More information on this can be found in the instructions for video platforms in the "Insert captions" section.

If you have inserted your video as a file, you can add a subtitle file by following the step-by-step instructions below.
However, if you have embedded your video via a URL, no captions can be displayed or inserted.

Insert Captions

  1. Select your video.
  2. Go to "Advanced settings".
  3. Select "Default settings" from the menu bar.
  4. Select "Captions" in the submenu.
  5. Select your subtitle file and the language. Then click on "Upload". Click on "Page" in the menu bar to return to the content page.

YouTube

Step-by-step instructions: Add subtitles & captions

Videocampus Sachsen

Create Captions

Create with Video Editor

Video editing programs, such as YouTube, sometimes offer automatic caption creation. More information on this can be found in the instructions for video platforms in the "Insert captions" section.

Create manually

  • Create a text file in a text editor (e.g. Notepad or Editor)
  • First Line: WEBVTT
  • Time periods for caption sections: 00:01.000 --> 00:05.000
  • Insert captions directly below
  • Blank line between sections
  • Save as: "videoname-languagekey.vtt", for example myvideo-en.vtt
The following criteria are taken from the checklist:
  • If the audio track of a video contains information, captions are provided as an alternative.
  • Captions and sound are displayed synchronously.
  • There are only videos with original sound in the main language of the course. If not, there are switchable captions in the main language that can be accessed as a separate audio track.

People with hearing impairments rely on captions to fully understand video content. However, captions can also help people learn a foreign language or make it possible to watch videos in noisy environments. In order to capture all content correctly, captions and the associated sound and image must be displayed synchronously. If there are foreign language sections in the audio track, these should be translated in the captions.

The following describes how you can create subtitle files yourself and insert them via PowerPoint. If you embed your video online via YouTube, follow the Instructions for creating and inserting captions in YouTube.

Create manually

  • Create a text file in a text editor (e.g. Notepad or Editor)
  • First Line: WEBVTT
  • Time periods for caption sections: 00:01.000 --> 00:05.000
  • Insert captions directly below
  • Blank line between sections
  • Save as: "videoname-languagekey.vtt", for example myvideo-en.vtt

Create Captions

Menu bar: Playback > Caption Options > Insert Captions > Insert Captions

The following criteria are taken from the checklist:
  • If the audio track of a video contains information, captions are provided as an alternative.
  • Captions and sound are displayed synchronously.
  • There are only videos with original sound in the main language of the course. If not, there are switchable captions in the main language that can be accessed as a separate audio track.

People with hearing impairments rely on captions to fully understand video content. However, captions can also help people learn a foreign language or make it possible to watch videos in noisy environments. In order to capture all content correctly, captions and the associated sound and image must be displayed synchronously. If there are foreign language sections in the audio track, these should be translated in the captions.

Create Captions

  • Create a text file in a text editor (e.g. Notepad or Editor)
  • First Line: WEBVTT
  • Time periods for caption sections: 00:01.000 --> 00:05.000
  • Insert captions directly below
  • Blank line between sections
  • Save as: "videoname-languagekey.vtt", for example myvideo-en.vtt

Create Captions

HTML tags: Adding captions in WebVTT format via <track>
                  
                    <video controls>
                      <source src="myvideo.mp4" srclang="en" type="video/mp4">
                      <track src="myvideo-en.vtt" kind="subtitles" srclang="en" label="English">
                    </video>
                  
                

BITV-Guidelines

  • Recorded videos with captions
  • Synchronous Captions
  • Spoken captions
State emblem of the Free State of Saxony: The lettering “Saxony” in black, below the stylized coat of arms of the Free State of Saxony in black on a white background. This measure is co-financed by tax funds on the basis of the budget approved by the Saxon state parliament.

v.0.11.1 - beta

  • Legal Notice
  • Data Protection
  • Accessibility
  • Checklist
  • Guidebook