mirror of
https://github.com/jambonz/batch-speech-utils.git
synced 2026-07-11 23:02:17 +00:00
26 lines
468 B
JavaScript
26 lines
468 B
JavaScript
const audioRecordingTemplate = {
|
|
'parties': {
|
|
'N': 0,
|
|
'from': '',
|
|
'to': ''
|
|
},
|
|
'duration': 0,
|
|
'url': '',
|
|
'conversation': {
|
|
'as heard': {
|
|
'full transcript': '',
|
|
'confidence': '',
|
|
'transcription vendor': '',
|
|
'timestamps': []
|
|
},
|
|
'after the fact': {
|
|
'full transcript': '',
|
|
'confidence': '',
|
|
'transcription vendor': '',
|
|
'timestamps': []
|
|
}
|
|
}
|
|
};
|
|
|
|
module.exports = audioRecordingTemplate;
|