Skip to content

vhmth/deepgram

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

deepgram

NPM version NPM downloads MIT License

NPM module that binds to the Deepgram audio search/transcription API.

https://www.deepgram.com

Usage

Install:

npm install --save deepgram

Indexing a file:

import Deepgram from 'node-deepgram';

let deepgram = new Deepgram({
  userID: '<user_id>'
});

deepgram.index('http://website.com/audio.mp3').then(contentID => {
  // do what you will with contentID
}).catch(err => {
  // handle error
});

Development

The wrapper uses Babel. Check the scripts in package.json.

API Documentation

http://api.lexika.io/doc

License

MIT

Releases

No releases published

Packages

No packages published