Note: You are currently viewing documentation for Moodle 3.6. Up-to-date documentation for the latest stable version of Moodle is likely available here: RecordingsBN.

RecordingsBN

From MoodleDocs

The RecordingsBN module is a contributed plugin written by Blindside Networks that works as resource for a course. It allows to present students and teachers a list of playback recordings related to the course which were previously created using a BigBlueButton server and the BigBlueButtonBN activities in the course.

RecordingsBN is part of the Moodle BigBlueButton set and complements BigBlueButtonBN to provide with all the features required in order to take advantage of the new capabilities offered by a BigBlueButton server version 0.80 (and later).


Features

BigBlueButton is an open source web conferencing system for distance education. The goal of the project is to enable universities, colleges, and K12 to delivery a high-quality learning experience to remote students.

BigBlueButton supports real-time sharing of slides (PDF and any document readable by OpenOffice), webcams, whiteboard, chat, voice over IP (using FreeSWITCH), and presenter's desktop. It can record and playback sessions (slides, audio, and chat), runs on Mac, Unix, and PC clients, and is supported by a community of developers that care about good design and a streamlined user experience. (see release notes).


With this plugin you can

  • Teachers and administrators can add a resource in any class to access and manage recorded lectures
  • Teachers can publish, unpublish and delete recordings as part of the management of recorded lectures
  • Students can access recorded lectures through the list of recordings offered by the resource

Requirements

You need:

Installation

These instructions assume your Moodle server is installed at /var/www/moodle.

  • Copy zip file you downloaded to /var/www/moodle/mod
cp recordingsbn.zip /var/www/moodle/mod
  • Enter the following commands
cd /var/www/moodle/mod 
sudo unzip recordingsbn.zip

This will create the directory

./recordingsbn
  • Login to your moodle site as administrator


Moodle will detect the new module and prompt you to Upgrade.

  • Click the 'Upgrade' button.


The activity module will install recordingsbn.

  • Click the 'Continue' button.


At this point, you can enter any course, turn editing on, and add a RecordingsBN activity link to the class.

Note: You must to have BigBlueButtonBN installed to actually manage meetings and to create recordings as well.

You can find a video overview of installing and using bigbluebuttonbn and recordingsbn, at http://www.blindsidenetworks.com/integrations/moodle/


Development status

Latest stable releases

1.0.8 - for Moodle 2.0/2.1/2.2/2.3 (Source code)

Latest development releases

1.0.9-rc1 - for Moodle 2.0/2.1/2.2/2.3/2.4/2.5 (Source code)

1.0.9-rc1 - for Moodle 1.9 (Source code)

Previous releases

1.0.9-b3 - for Moodle 2.0/2.1/2.2/2.3/2.4/2.5 (Source code)

1.0.9-b3 - for Moodle 1.9 (Source code)

1.0.9-b2 - for Moodle 2.0/2.1/2.2/2.3/2.4/2.5 (Source code)

1.0.9-b2 - for Moodle 1.9 (Source code)

1.0.9-b1 - for Moodle 2.0/2.1/2.2/2.3/2.4/2.5 (Source code)

1.0.8-b3 - for Moodle 2.0/2.1/2.2/2.3 (Source code)

1.0.8-b2 - for Moodle 2.0/2.1/2.2/2.3 (Source code)

1.0.8-b1 - for Moodle 2.0/2.1/2.2/2.3 (Source code)

1.0.7-rc2 - for Moodle 2.0/2.1/2.2 (Source code)


For reporting bugs and issues or asking for new features use the Moodle tracking system Module: RecordingsBN

FAQ

More Information

An important change was introduced to the UI on 1.0.9-rc1. The table that used to be an standard HTML one is now a dynamically created javascript one based on the standard YUI library included in Moodle, plus the contributed YUI plugins Datatable Paginator and Paginator View. The main advantage this change brings is the ability to order columns and paginate the results when there is a big number of recordings.

There are however two potential problems associated with this new interface. The first is the possibility of experiencing javascript clashes due the version of the libraries loaded when Moodle has another Plugin making use of the same YUI plugin. And the second is the possibility of the user having the javascript disabled in the browser. In this two cases the plugin will show a white page.

In these cases what an administrator can do is uncomment the line 254 in the view.php file

   //echo html_writer::table($table)."\n";

And comment the 4 lines related to the javascript rendering (256-259).

echo '

'."\n"; echo '
'."\n"; echo '
'."\n"; echo '

'."\n";

Also, the YUI plugins don't support Unicode, so, for those using Moodle with a language that requires Unicode characters the YUI view could not work. Administrators should apply the same change suggested.