Node wrapper for Deepgram
npm install node-deepgram[![NPM version][npm-image]][npm-url]
[![NPM downloads][npm-downloads]][npm-url]
[![MIT License][license-image]][license-url]
NPM module that binds to the Deepgram audio search/transcription API.
https://www.deepgram.com
Install:
```
npm install --save deepgram
Indexing a file:
`
import Deepgram from 'node-deepgram';
let deepgram = new Deepgram({
userID: '
});
deepgram.index('http://website.com/audio.mp3').then(contentID => {
// do what you will with contentID
}).catch(err => {
// handle error
});
`
The wrapper uses Babel. Check the scripts in package.json`.
http://api.lexika.io/doc
[MIT][license-url]
[npm-image]: http://img.shields.io/npm/v/node-deepgram.svg?style=flat
[npm-url]: https://npmjs.org/package/node-deepgram
[npm-downloads]: http://img.shields.io/npm/dm/node-deepgram.svg?style=flat
[license-url]: LICENSE
[license-image]: http://img.shields.io/badge/license-MIT-blue.svg?style=flat