New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ivr-tester-transcriber-amazon-transcribe

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ivr-tester-transcriber-amazon-transcribe

Amazon Transcribe integration for IVR Tester

  • 0.1.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
18
decreased by-14.29%
Maintainers
1
Weekly downloads
 
Created
Source

Amazon Transcribe

npm

A plugin for IVR Tester to transcribe IVR call flows using AWS Transcribe.

Installation

Install using yarn:

yarn add ivr-tester-transcriber-amazon-transcribe

Or npm:

npm install ivr-tester-transcriber-amazon-transcribe

Configuration

  1. Create an AWS Account
  2. Store AWS keys in environment variables:
export AWS_ACCESS_KEY_ID=<Your access key ID>
export AWS_SECRET_ACCESS_KEY=<Your secret access key>

Usage

See the API's documentation for details of each parameter.

import { amazonTranscribe } from "ivr-tester-transcriber-amazon-transcribe";

const config: Config = {
  transcriber: amazonTranscribe("us-east-1", "en-GB"),
};

Training a custom language model

You can train a model with domain specific terminology to improve accuracy. As of writing this it is only available for US English (en-US).

Interesting blog article on the subject: Building custom language models to supercharge speech-to-text performance for Amazon Transcribe

Testing

Integration tests exist to assert it integrates properly with the real Amazon Transcribe service. This means it costs money so hasn't been added to the project's CI/CD pipeline.

To run locally:

export AWS_ACCESS_KEY_ID=<Your access key ID>
export AWS_SECRET_ACCESS_KEY=<Your secret access key>

yarn test:integration

Keywords

FAQs

Package last updated on 23 Jun 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc