@kablamo/react-transcript-editor
Version:
A React component to make transcribing audio and video easier and faster.
247 lines (235 loc) • 7.08 kB
JavaScript
module.exports =
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
/******/ return installedModules[moduleId].exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ i: moduleId,
/******/ l: false,
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ // Flag the module as loaded
/******/ module.l = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/
/******/ // define getter function for harmony exports
/******/ __webpack_require__.d = function(exports, name, getter) {
/******/ if(!__webpack_require__.o(exports, name)) {
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
/******/ }
/******/ };
/******/
/******/ // define __esModule on exports
/******/ __webpack_require__.r = function(exports) {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/
/******/ // create a fake namespace object
/******/ // mode & 1: value is a module id, require it
/******/ // mode & 2: merge all properties of value into the ns
/******/ // mode & 4: return value when already ns object
/******/ // mode & 8|1: behave like require
/******/ __webpack_require__.t = function(value, mode) {
/******/ if(mode & 1) value = __webpack_require__(value);
/******/ if(mode & 8) return value;
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
/******/ var ns = Object.create(null);
/******/ __webpack_require__.r(ns);
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
/******/ return ns;
/******/ };
/******/
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = function(module) {
/******/ var getter = module && module.__esModule ?
/******/ function getDefault() { return module['default']; } :
/******/ function getModuleExports() { return module; };
/******/ __webpack_require__.d(getter, 'a', getter);
/******/ return getter;
/******/ };
/******/
/******/ // Object.prototype.hasOwnProperty.call
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/
/******/
/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = 22);
/******/ })
/************************************************************************/
/******/ ({
/***/ 22:
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/**
edge cases
- more segments then words - not an issue if you start by matching words with segment
and handle edge case where it doesn't find a match
- more words then segments - orphan words?
*
* Takes in list of words and list of paragraphs (paragraphs have speakers info associated with it)
```js
{
"words": [
{
"id": 0,
"start": 13.02,
"end": 13.17,
"text": "There"
},
{
"id": 1,
"start": 13.17,
"end": 13.38,
"text": "is"
},
...
],
"paragraphs": [
{
"id": 0,
"start": 13.02,
"end": 13.86,
"speaker": "TBC 00"
},
{
"id": 1,
"start": 13.86,
"end": 19.58,
"speaker": "TBC 1"
},
...
]
}
```
* and returns a list of words grouped into paragraphs, with words, text and speaker attribute
```js
[
{
"words": [
{
"id": 0,
"start": 13.02,
"end": 13.17,
"text": "There"
},
{
"id": 1,
"start": 13.17,
"end": 13.38,
"text": "is"
},
{
"id": 2,
"start": 13.38,
"end": 13.44,
"text": "a"
},
{
"id": 3,
"start": 13.44,
"end": 13.86,
"text": "day."
}
],
"text": "There is a day.",
"speaker": "TBC 00"
},
...
]
```
*/
function groupWordsInParagraphsBySpeakers(words, segments) {
var result = addWordsToSpeakersParagraphs(words, segments);
return result;
}
;
function addWordsToSpeakersParagraphs(words, segments) {
var results = [];
var currentSegment = 'UKN';
var currentSegmentIndex = 0;
var previousSegmentIndex = 0;
var paragraph = {
words: [],
text: '',
speaker: ''
};
words.forEach(function (word) {
currentSegment = findSegmentForWord(word, segments); // if a segment exists for the word
if (currentSegment) {
currentSegmentIndex = segments.indexOf(currentSegment);
if (currentSegmentIndex === previousSegmentIndex) {
paragraph.words.push(word);
paragraph.text += word.text + ' ';
paragraph.speaker = currentSegment.speaker;
} else {
previousSegmentIndex = currentSegmentIndex;
paragraph.text.trim();
results.push(paragraph);
paragraph = {
words: [],
text: '',
speaker: ''
};
paragraph.words.push(word);
paragraph.text += word.text + ' ';
paragraph.speaker = currentSegment.speaker;
}
}
});
results.push(paragraph);
return results;
}
/**
* Helper functions
*/
/**
* given word start and end time attributes
* looks for segment range that contains that word
* if it doesn't find any it returns a segment with `UKN`
* speaker attributes.
* @param {object} word - word object
* @param {array} segments - list of segments objects
* @return {object} - a single segment whose range contains the word
*/
function findSegmentForWord(word, segments) {
var tmpSegment = segments.find(function (seg) {
if (word.start >= seg.start && word.end <= seg.end) {
return seg;
}
});
return tmpSegment;
}
/* harmony default export */ __webpack_exports__["default"] = (groupWordsInParagraphsBySpeakers);
/***/ })
/******/ });
//# sourceMappingURL=groupWordsInParagraphsBySpeakersDPE.js.map