@pietrop/assemblyai-to-dpe

1.0.0 • Public • Published

assemblyai-to-dpe

Node module to convert from assemblyAI STT json to DPE json format. It can convert AssemblyAI results, with or without speaker utterances. If speaker utterances are not present, it uses punctuation to create the paragraphs.

Setup

git clone git@github.com:pietrop/assemblyai-to-dpe.git
cd assemblyai-to-dpe
npm install

Usage

npm install @pietrop/assemblyai-to-dpe
const convert = require('@pietrop/assemblyai-to-dpe');
const sampleJson = require('./sample/assemblyai-speakers-sample.json');

const json = convert(sampleJson);

console.log(json);
Example of output in DPE format
{
 "words": [
   {
     "id": 0,
     "text": "Good",
     "start": 0,
     "end": 0.44
   },
   {
     "id": 1,
     "text": "day,",
     "start": 0.4,
     "end": 0.54
   },
   ...
 ],
 "paragraphs": [
   {
     "end": 101.18,
     "start": 0,
     "speaker": "SPEAKER_A"
   },
   ...
 ]
}

Development env

Node version is set in node version manager .nvmrc

Build

NA

Tests

NA

Deployment

npm run publish:public

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i @pietrop/assemblyai-to-dpe

      Weekly Downloads

      1

      Version

      1.0.0

      License

      MIT

      Unpacked Size

      5.57 kB

      Total Files

      3

      Last publish

      Collaborators

      • pietrop