Skip to content

ilifau/InteractiveVideo

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

InteractiveVideo

ILIAS Interactive Video Plugin

ILIAS compatibility

Since there are a lot of changes in ILIAS 6, there will be a new branch '6_x' which is compatible with ILIAS 6, for older ILIAS versions you can still use the master branch.

Changes in Version 2.6.0

  • Compulsory questions
  • Automatic scrolling if show all comments is active
  • New Learning Progress mode
  • Table of contents
  • Complete Changelog

Repositories connected to the InteractiveVideo Plugin

Installation Instructions

  1. Clone this repository to <ILIAS_DIRECTORY>/Customizing/global/plugins/Services/Repository/RepositoryObject/InteractiveVideo
  2. Login to ILIAS with an administrator account (e.g. root)
  3. Select Plugins from the Administration main menu drop down.
  4. Search the InteractiveVideo plugin in the list of plugin and choose Activate from the Actions drop down.

Workaround patch for making the Interactive Videos work with the Web Access Checker

Simply insert the following line into the file 'Services/MediaObjects/classes/class.ilObjMediaObject.php' at round about line number 1511, which should read like this in the original:

case "mep":
	$obj_id = $id;
	break;

Insert case "xvid": to make it read like this:

case "mep":
case "xvid":
	$obj_id = $id;
	break;

That's it.

What is it for?

The InteractiveVideo Plugin for ILIAS gives you the possibility to create a video object, where your students can communicate in a asynchronous way. Please note that this is NOT a chat. They can leave notes on different timestamps in the video for other students to read, or only for themselves. Further a tutor can insert questions on various positions in the video for the students to answer. At the moment three questions types are supported single and multiple choice and a reflective type.

Interactive Video Main View

Main View

Interactive Video Question View

Question View

Interactive Video Create Images from Media Object Source

Create Images from Media Object Source

Interactive Video Create Question

Create Question

Interactive Video Sources & Plugin Slots

Main View

Interactive Video Modal options

Modal settings

Interactive Video Subtitles

Subtitle

Interactive Video Compulsory Questions

Compulsory_question

Interactive Video Learning Progress

Learning_progress

Interactive Video Table of Content

Table_of_content

About

ILIAS Interactive Video Plugin

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 65.8%
  • JavaScript 15.1%
  • SCSS 12.4%
  • HTML 3.7%
  • CSS 2.4%
  • Less 0.6%