125d70699b
* Demo changes
* Revert "feat(captions): no longer writes in the pad"
This reverts commit a76de8c458
.
* feat(transcriptoin): Add config options for the transcription backend
* feat(transcription): Add autodetect option to cc chevron
* feat(transcription): Move transcription options into settings modal
* feat(transcription): Set transcription options via userdata
* fix(transcription): Correct userdata for settings transcription params
* feat(transcriptions): options to auto enable caption button
* feat(transcriptions): Option to hide old CC pad funcionality
* fix(transcription): Fix PR comments
* fix(transcription): Refactor updateTranscript to prevent null user and make it more readable
* feat(transcription): bbb_transcription_provider can be set via userdata
* fix(transcription): Use base10 for parseInt
* fix(transcriptions): Fix CC language divider when using webspeech
* fix(transcriptions): Use a default pad in the settings instead of hardcoding 'en'
We still need to use a language pad such as 'en', but in the future we can better
separate these systems.
* fix(transcription): Add a special permission for automatic transcription updates to the pad and restore old per user updates permission
* feature(transcriptions): Include transcriptions submenu and locales
* chore: bump bbb-transcription-controller to v0.2.0
* fix(transcription): Add missing menu files
* fix(transcription): Fix transcription provider options in settings.yml
* fix: setting password for bbb-transcription-controller
* build: add gladia-proxy.log for transcription-controller
* fix(transcriptions): Remove transcript splitting and floor logic from akka apps
* fix(captions): Show long utterances as split captions, show multiple speaker captions
* chore: bump bbb-transcription-controller to 0.2.1
---------
Co-authored-by: Anton Georgiev <anto.georgiev@gmail.com>
72 lines
2.1 KiB
JavaScript
72 lines
2.1 KiB
JavaScript
import AudioCaptions from '/imports/api/audio-captions';
|
|
import Auth from '/imports/ui/services/auth';
|
|
|
|
const CAPTIONS_CONFIG = Meteor.settings.public.captions;
|
|
const CAPTIONS_ALWAYS_VISIBLE = Meteor.settings.public.app.audioCaptions.alwaysVisible;
|
|
const CHARACTERS_PER_LINE = CAPTIONS_CONFIG.lineLimit;
|
|
const LINES_PER_MESSAGE = CAPTIONS_CONFIG.line;
|
|
const CAPTION_TIME = CAPTIONS_CONFIG.time;
|
|
const CAPTION_LIMIT = CAPTIONS_CONFIG.captionLimit;
|
|
|
|
function splitTranscript(obj) {
|
|
const transcripts = [];
|
|
const words = obj.transcript.split(' ');
|
|
|
|
let currentLine = '';
|
|
let result = '';
|
|
|
|
for (const word of words) {
|
|
if ((currentLine + word).length <= CHARACTERS_PER_LINE) {
|
|
currentLine += word + ' ';
|
|
} else {
|
|
result += currentLine.trim() + '\n';
|
|
currentLine = word + ' ';
|
|
}
|
|
|
|
if (result.split('\n').length > LINES_PER_MESSAGE) {
|
|
transcripts.push(result)
|
|
result = ''
|
|
}
|
|
}
|
|
|
|
transcripts.push(result)
|
|
transcripts.push(currentLine.trim())
|
|
|
|
return transcripts.map((t) => { return { ...obj, transcript: t} });
|
|
}
|
|
|
|
const getAudioCaptionsData = () => {
|
|
// the correct way woulde to use { limit: CAPTION_LIMIT } but something
|
|
// is up with this mongo query and it does not seem to work
|
|
let audioCaptions = AudioCaptions.find({ meetingId: Auth.meetingID}, { sort: { lastUpdate: -1 } }).fetch().slice(-CAPTION_LIMIT);
|
|
|
|
const recentEnough = (c) => (new Date().getTime()/1000 - c.lastUpdated) < CAPTIONS_CONFIG.time/1000;
|
|
|
|
audioCaptions = audioCaptions.filter(recentEnough).map((c) => {
|
|
const splits = splitTranscript(c);
|
|
return splits;
|
|
});
|
|
|
|
return audioCaptions.flat().filter((c) => c.transcript).slice(-CAPTION_LIMIT);
|
|
};
|
|
|
|
const getAudioCaptions = () => Session.get('audioCaptions') || false;
|
|
|
|
const setAudioCaptions = (value) => Session.set('audioCaptions', value);
|
|
|
|
const hasAudioCaptions = () => {
|
|
const audioCaptions = AudioCaptions.findOne(
|
|
{ meetingId: Auth.meetingID },
|
|
{ fields: {} },
|
|
);
|
|
|
|
return CAPTIONS_ALWAYS_VISIBLE || !!audioCaptions;
|
|
};
|
|
|
|
export default {
|
|
getAudioCaptionsData,
|
|
getAudioCaptions,
|
|
setAudioCaptions,
|
|
hasAudioCaptions,
|
|
};
|