https://github.com/nickytonline/deepgram-speech-to-text-stream
Bekah Hawrot Weigel joins Nick to show how you can transcribe text using Deepgram's Node.js SDK. They go through the demo code all the way to building out an app with Express that allows you to submit a URL for transcription.
https://github.com/nickytonline/deepgram-speech-to-text-stream
deepgram nodejs speech-to-text
Last synced: 18 days ago
JSON representation
Bekah Hawrot Weigel joins Nick to show how you can transcribe text using Deepgram's Node.js SDK. They go through the demo code all the way to building out an app with Express that allows you to submit a URL for transcription.
- Host: GitHub
- URL: https://github.com/nickytonline/deepgram-speech-to-text-stream
- Owner: nickytonline
- License: mit
- Created: 2022-06-22T20:41:35.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-22T20:59:16.000Z (almost 4 years ago)
- Last Synced: 2025-04-02T00:31:32.534Z (about 1 year ago)
- Topics: deepgram, nodejs, speech-to-text
- Language: JavaScript
- Homepage: https://youtu.be/tHe2yBLh_Hc
- Size: 185 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Using Deepgram for speech-to-text
Bekah Hawrot Weigel joins Nick to show how you can transcribe text using Deepgram's Node.js SDK. They go through the demo code all the way to building out an app with Express that allows you to submit a URL for transcription.

## Installation
1. Create a Deepgram account and API key. See the [official docs](https://developers.deepgram.com/sdks-tools/sdks/node-sdk/) for this. Add the API key to `.env file`, e.g.
```
DEEPGRAM_API_KEY="YOUR_API_KEY"
```
2. Run `npm install`
3. Run `node src/server/server.js
4. Navigate to http://localhost:3000.