Moodle Plugins directory: Video Assessment Module: Versions: 1.0.0 (Build: 2025100600) | Moodle.org
Video Assessment Module
Video Assessment Module 1.0.0 (Build: 2025100600)
Code prechecks
Video Assessment
Requirements
- Moodle 4.0 to 4.3
- ffmpeg
- MP4Box
Optional parameter adjustment
Some videos failed to play on Safari or Firefox.
For better playback compatibility on Safari or Firefox, you can add "-pix_fmt yuv420p" parameter to the ffmpeg conversion command.
The ffmpeg command is as follows:
/usr/local/bin/ffmpeg -i {INPUT} -pix_fmt yuv420p {OUTPUT}
(The location for changing the ffmpeg command: Dashboard / Site administration / Plugins / Activity modules / Video Assessment)
Description
- This activity module adds a video window the standard Moodle rubrics for easier assessment of live performances.
- It features self and peer assessment as well as teacher assessment.
- It is part of a 12-year action research project designed by teachers of Sapporo Gakuin University and funded by the school.
- Thanks to CHIeru Communication Bridge Educational Web Programming in Sapporo, Japan for their work developing this program.
Attention
** For upgrades only. Ignore for clean installs.**
Please check the version number if the Video Assessment module is already installed on your Moodle.
*How to check the version number.
Go to Site administration > Plugins > Plugins overview and click the [Additional plugins] tab. The grey number shown in the [Version] column is the version number. If the version number is 11 digits eg. "20230926001", then you need to perform these following steps before installing the new version.
In order to change the version number of Video Assessment module on the Moodle database you can simply run a MySQL command. This can be accomplished from your control panel (cPanel, DirectAdmin etc >> phpMyAdmin) or from the command line.
- Log into your control panel – cPanel, DirectAdmin
- Navigate to phpMyAdmin
- Select the Moodle database on the left.
- Go to the SQL tab and run the following command:
UPDATE xxx_config_plugins SET value = 2025040100 WHERE plugin = ‘mod_videoassessment’;.
*tableprefix can vary from installation to installation.
You can find the table prefix in the config.php file from the root of your Moodle installation:
$CFG->prefix = 'mdl_';
- Run the following command to check if the value has been changed correctly.
SELECT * FROM xxx_config_plugins WHERE plugin = ‘mod_videoassessment’;
Success if the result is as follows:
+------+---------------------+---------+------------+
| id | plugin | name | value |
+------+---------------------+---------+------------+
| xxx | mod_videoassessment | version | 2025040100 |
+------+---------------------+---------+------------+
*The value of [value] column shows "2025040100".
Version information
- Version build number
- 2025100600
- Version release name
- 1.0.0 (Build: 2025100600)
- Maturity
- Stable version
- MD5 Sum
- 56d65446c8ddff0657345c86c6010d75
- Supported software
- Moodle 4.0, Moodle 4.1, Moodle 4.2, Moodle 4.3
- Latest release for Moodle 4.0
- Latest release for Moodle 4.1
- Latest release for Moodle 4.2
- Latest release for Moodle 4.3
Version control information
- Version control system (VCS)
- GIT
- VCS repository URL
Default installation instructions for plugins of the type Activities
- Make sure you have all the required versions.
- Download and unpack the module.
- Place the folder (eg "assignment") in the "mod" subdirectory.
- Visit http://yoursite.com/admin to finish the installation