944edf2ccf
Hardcoded pt-BR prototype for closed captions generated by the browser's WebSpeech API.
10 lines
208 B
JavaScript
10 lines
208 B
JavaScript
import { Meteor } from 'meteor/meteor';
|
|
|
|
const AudioCaptions = new Mongo.Collection('audio-captions');
|
|
|
|
if (Meteor.isServer) {
|
|
AudioCaptions._ensureIndex({ meetingId: 1 });
|
|
}
|
|
|
|
export default AudioCaptions;
|