modified lib-jitsi-meet dev repo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

recordingResult.js 697B

123456789101112131415161718
  1. /**
  2. * This object stores variables needed around the recording of an audio stream
  3. * and passing this recording along with additional information along to
  4. * different processes
  5. * @param blob the recording audio stream as a single blob
  6. * @param name the name of the person of the audio stream
  7. * @param startTime the time in UTC when recording of the audiostream started
  8. * @param wordArray the recorder audio stream transcribed as an array of Word
  9. * objects
  10. */
  11. var RecordingResult = function(blob, name, startTime, wordArray) {
  12. this.blob = blob;
  13. this.name = name;
  14. this.startTime = startTime;
  15. this.wordArray = wordArray;
  16. };
  17. module.exports = RecordingResult;