1.0.10 • Published 10 years ago
node-deepgram v1.0.10
deepgram
NPM module that binds to the Deepgram audio search/transcription API.
Usage
Install:
npm install --save deepgramIndexing 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.