Add audio and video annotations to text, anywhere a TinyMCE text editor is present. This plugin adds buttons for recording audio or video (with audio) to the editor's toolbar. Using WebRTC technologies, all recording is done instantly in the browser, using nothing but HTML5 and JavaScript (no Flash!). After recording, users can embed the annotation directly into the text they are currently editing. The recording will appear as an audio or video player in the published writing.
There are currently two ways to install the plugin:
-
Installing via zip file:
- Download the project's repository as a zip archive from GitHub: https://github.com/blindsidenetworks/moodle-tinymce_recordrtc/archive/master.zip
- In Moodle, go to
Site administration
>Plugins
>Install plugins
- Under the
Install plugin from ZIP file
section, either select the above archive, or drag and drop it into the specified box on the page - Click the installation button
-
Installing manually (if the user does not have necessary permissions for installing the first way):
- Navigate to
moodle_root_path/lib/editor/tinymce/plugins
, wheremoodle_root_path
is the location where Moodle is installed (ex.:/var/www/html/moodle
) - Execute
sudo git clone https://github.com/blindsidenetworks/moodle-tinymce_recordrtc.git recordrtc
- Log into a Moodle account with administration capabilities
- A screen should appear asking the install the plugin, similar to above
- Navigate to
Soon, there will also be the possibility to install easily via the Moodle Plugins Directory.
To use the plugin, just click on one of the recording buttons (either the microphone or the video camera), and a popup will appear with a big "Start Recording" button. When clicked, the browser will probably ask for permission to use the webcam/microphone.
After the recording starts, a timer will begin counting down, indicating how much time is left to record; when the timer hits 0, the recording will automatically stop (this will also happen if approaching the maximum upload size determined in the server settings).
When the recording is finished, the user can play it back to see/hear if it is what they want. To embed the file, the user must click "Attach Recording as Annotation". A dialog box will pop up asking the user what the link should appear as in the text editor. After that, the file gets embedded right where the cursor was in the text.
The plugin can be configured during the initial install, and later by navigating to Site administration
> Plugins
> Text editors
> TinyMCE HTML editor
> RecordRTC
. The administrator can:
- Allow the users to record only audio, only video, or both (changing the buttons that appear in the editor toolbar)
- Change the target bitrate of recorded audio
- Change the target bitrate of recorded video
- Set the recording time limit, to control maximum recording size
- If nothing is displayed in the popup after clicking one of the buttons in the TinyMCE toolbar, it is likely an issue with the
X-Frame-Options
header. To fix this, change the server configuration to set the header toSAMEORIGIN
. Also, make sure that the header is not set twice as the browser will default the value toDENY
(sometimes individual web apps also set the header, or there is some conflicting server configuration) - The default maximum size of uploads in PHP is very small, it is recommended to set the
upload_max_filesize
setting to40M
and thepost_max_size
setting to50M
for a time limit of 2:00 to avoid getting an alert while recording - The filesize of recorded video for Firefox will likely be twice that of other browsers, even with the same settings; this is expected as it uses a different writing library for recording video. The audio filesize should be similar across all browsers