RecordRTC

De MoodleDocs
Revisión del 11:00 27 feb 2019 de German Valero (discusión | contribs.) (update as per English 3.6)
RecordRTC
Tipo Editors
Conjunto N/A
Descargas https://moodle.org/plugins/?q=recordrtc
Problemas {{{tracker}}}
Discusión {{{discussion}}}
Mantenedor(es) Jesus Federico

¿Qué es RecordRTC?

RecordRTC (GrabarRTC) es un conjunto de plugins para editores de Moodle (Atto y TinyMCE) que le permite a los usuarios añadir anotaciones con audio y video al texto, en cualquier lado en donde esté presente un editor de texto. Este plugin añade botones para grabar audio o video (con audio) a la barra de herramientas del editor. recordrtc buttons.png

Usando tecnologías WebRTC, todas las grabaciones se hacen instantáneamente en el navegador. Después de grabar, los usuarios pueden incrustar la anotación directamente adentro del texto que actualmente están editando. Las grabaciones aparecerán como un reproductor de audio o video en el escrito publicado.

Nota: Pendiente de Traducir. ¡Anímese a traducir esta página!.     ( y otras páginas pendientes)

The initial version (1.0) works fine with Chrome, Firefox and Opera on Desktop computers running Windows, Linux, Mac OS and Chrome OS.


¿ Cómo lo obtengo ?

  • Administrators whose Moodle sites allow plugins to be installed directly can install RecordRTC by clicking the Install Plugins link from the Plugins area of Site administration and then searching for the [Atto RecordRTC plugin or TinyMCE RecordRTC plugin as appropriate.
  • Administrators who are not able to install plugins directly can download the plugin from the Moodle Plugins directory and upload it to the server.
  • The plugins are also available on Github: Here for Atto and here for TinyMCE Look for the latest release and download zip file by using the link recordrtc git download.png See the FAQ below for set up with Ubuntu.

¿ Cuales son las configuraciones administrativas ?

The plugins will work with the defaults, but you can change them from theText editors pages (Atto or TinyMCE) from Plugins in Site administration.

Administrators can:

  • Allow the users to record only audio, only video, or both by 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

The default bitrate for recorded audio (128000) should lead to generate files of about 15kB per minute and the default bitrate for recorded video (2500000) to generate files of 20MB per minute. The lower the bitrate the smaller the file size.

The recording time limit is set to 120 seconds by default so the maximum size expected on video files should be of about 40MB

¿ Cómo funciona ?

  • The Atto or TinyMCE editors will display one or both icons for audio and/or video, depending on the administrator's setting.

RecordAtto.png

  • Click the icon for audio or video recording. You'll see a button 'Start recording'. Click it and speak.

attachasannotation.png

  • When you have finished, click to stop the recording. It will ask you to name it and attach the recording as an annotation.

Solución de problemas

Recording stops after a few seconds

recordingrtc error limit reached.png

There are two settings that establish the maximum file size that can be uploaded to Moodle. These are defined in php.ini for the web server.

post_max_size = 8M
upload_max_filesize = 2M

Just edit the file and increase their values to something between 40M-50M for 2 minutes video recordings. In Ubuntu

vi /etc/php/7.0/apache2/php.ini

Problemas conocidos

  • The media files don't show duration
  • The controls for navigating the files do not work properly in the player.
  • RecordRTC cannot be used in assignment feedback in Moodle 3.5 or lower versions due to the lack of file support in gradebook feedbacks. See [https://tracker.moodle.org/browse/MDL-27520 MDL-27520] for more details.

F.A.Q.

¿ Porqué estos plugins no funcionan con todos los navegadores ?

  • WebRTC ("Web Real-Time Communication") is a collection of communications protocols and application programming interfaces that enable real-time communication over peer-to-peer connections. Implemented in browsers it enables applications such as video conferencing, file transfer, chat, or desktop sharing without the need of either internal or external plugins.[Wikipedia]


MediaStream Recording API, sometimes simply referred to as the Media Recording API or the MediaRecorder API, is closely affiliated with the Media Capture and Streams API and the WebRTC API. The MediaStream Recording API makes it easy to record audio and/or video streams. When used with navigator.mediaDevices.getUserMedia(), it provides an easy way to record from the user's input devices and instantly use the result in web apps. Both audio and video may be recorded, separately or together. [MediaRecorder Documentation]

As these plugins make use of diverse WebRTC technologies, they can only be used in browsers that have implemented both [WebRTC 1.0] and [MediaRecorder API]. This is the case for Chrome, Firefox and Opera. [See `Supported browsers and platforms`] Therefore these are the only ones that the initial version of these plugins (1.0) support.

Edge has implemented WebRTC 1.0 in Microsoft Edge but it does not include MediaRecorder API, so implementing the plugins for this browser requires some customisation to the libraries and the use of an external server.

Safari 11 for iOS will support WebRTC 1.0 [See] but same as edge, the implementation of MediaRecorder API has not been announced.

As this covers only about the 60% of the browsers, there are plans for adding support to these two browsers by making use of Media Streaming as in version 2.0 of these plugins.

¿ Puedo tener grabaciones de más de dos minutos ?

Yes. That can be changed in the plugin configuration. Keep in mind that as the file size will increase, the settings in php should also be edited. Also, because the size can be too much for the browser itself, we recommend not going to large. The only solution for giving a really large limit to the file size is to include a server component for doing a progressive upload and trans coding. But the first version of these plugins do not cover that possibility.

¿ En donde se almacenan las grabaciones ?

Storing the RecordRTC recordings is not different than storing any other media file that is uploaded to Moodle. So, it depends of the file system your Moodle server has configured. When using the default configuration, all files are stored in /moodlepath/moodledata/filedir/xx/yy/ where xx and yy are the path defined by the API when the file was uploaded. If you are a developer interested in learning more details about this you can see File storage on disk. It is an old article but it gives a good idea on what is underneath. Also see Repositorio Amazon S3 for information on storing files externally in Amazon S3 buckets.

¿ Cómo lo configuro con Ubuntu?

Notas para los administradores de sistema

Aumento del tamaño máximo del archivo

The default maximum size of uploads in PHP is very small, it is recommended to set the upload_max_filesize setting to 40M and the post_max_size setting to 50M for a time limit of 2:00 to avoid getting an alert while recording.

The file size 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 file size should be similar across all browsers

Notas para desarrolladores

Actualización de bibliotecas (librerías)

These plugins makes use of two libraries. Adapter.js which makes all the WebRTC magic and Bowser.js that helps to identify the browser and OS where the application is running.

If trying to update Bowser or Adapter.js dependencies for the project, it is necessary to replace the named definition at the top of the file with an anonymous one, like so For Bowser.js:

Old code: !function (root, name, definition) { if (typeof module != 'undefined' && module.exports) module.exports = definition() else if (typeof define == 'function' && define.amd) define(name, definition) else root[name] = definition() }(this, 'bowser', function () {

New code: define([], function() {

Or so for Adapter.js:

Old code (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.adapter = f()}})(function(){

New code define([], function() {