deepgram_speech_to_text
一個適用於 Dart 和 Flutter 的 Deepgram 客戶端,支援所有平台上的語音轉文字與文字轉語音功能。
一個適用於 Dart 和 Flutter 的 Deepgram 客戶端,支援所有平台上的語音轉文字與文字轉語音功能。
以下為英文專案原文快照,最新內容請造訪 GitHub。
Pub Version Pub Likes Pub Monthly Downloads
A Deepgram client for Dart and Flutter, supporting all Speech-to-Text and Text-to-Speech features on every platform.
Feel free to create issues, contribute to this project or to ask for new features on GitHub !
| Speech-to-Text | Status | Methods |
|---|---|---|
| From File | ✅ | listen.file(), listen.path() |
| From URL | ✅ | listen.url() |
| From Byte | ✅ | listen.bytes() |
| From Audio Stream | ✅ | listen.live(), listen.liveListener() |
| Text-to-Speech | Status | Methods |
|---|---|---|
| From Text | ✅ | speak.text() |
| From Text Stream | ✅ | speak.live(), speak.liveSpeaker() |
| Agent Interaction | Status | Methods |
|---|---|---|
| Agent Interaction | 🚧 | agent.live() |
PRs are welcome for all work-in-progress 🚧 features
All you need is a Deepgram API key. You can get a free one by signing up on Deepgram
First create the client with your api key.
Deepgram deepgram = Deepgram('your_api_key');
Then you can call the methods you need under the propper listen or speak subclass:
// Speech to text
DeepgramListenResult res = await deepgram.listen.file(File('audio.wav'), queryParams: {
'model': 'nova-2-general',
'detect_language': true,
'filler_words': false,
'punctuate': true,
// options here : https://developers.deepgram.com/reference/listen-file
});
// Text to speech
DeepgramSpeakResult res = await deepgram.speak.text('Hello world', queryParams: {
'model': 'aura-asteria-en'
// options here : https://developers.deepgram.com/reference/text-to-speech-api
});
let's say from a microphone :
// https://pub.dev/packages/record (other packages would work too)
Stream<List<int>> micStream = await AudioRecorder().startStream(RecordConfig(
encoder: AudioEncoder.pcm16bits,
sampleRate: 16000,
numChannels: 1,
));
final sttStreamParams = {
'detect_language': false, // not supported by streaming API
'language': 'en',
// must specify encoding and sample_rate according to the audio stream
'encoding': 'linear16',
'sample_rate': 16000,
};
then you got 2 options depending if you want to have more control over the stream or not :
// 1. you want the stream to manage itself automatically
Stream<DeepgramListenResult> stream = deepgram.listen.live(micStream, queryParams: sttStreamParams);
// 2. you want to manage the stream manually
DeepgramLiveListener listener = deepgram.liveListener(micStream, queryParams: sttStreamParams);
listener.stream.listen((res) {
print(res.transcript);
});
// connect to the servers and start sending data
listener.start();
// you can pause and resume the transcription (stop sending audio data to the server)
listener.pause();
// ...
listener.resume();
// then close the stream when you're done, you can call start() again if you want to restart a transcription
listener.close();
final ttsStreamParams = {
'model': 'aura-asteria-en',
'encoding': "linear16",
'sample_rate': 16000,
// options here: https://developers.deepgram.com/reference/text-to-speech-api
};
then again you got 2 options:
final textStream = ...
// 1. you want the stream to manage itself automatically
Stream<DeepgramSpeakResult> stream = deepgram.speak.live(textStream, queryParams: ttsStreamParams);
// 2. you want to manage the stream manually
DeepgramLiveSpeaker speaker = deepgram.liveListener(textStream, queryParams: ttsStreamParams);
speaker.stream.listen((res) {
print(res);
// if you want to use the audio, simplest way is to use Deepgram.toWav(res.data) !
});
// start sending data to the servers
speaker.start();
// https://developers.deepgram.com/docs/tts-ws-flush
speaker.flush();
//https://developers.deepgram.com/docs/tts-ws-clear
speaker.clear();
// then close the stream when you're done, you can call start() again if you want to restart a transcription
speaker.close();
For more detailed usage check the /example tab
Tested on Android and iOS, but should work on other platforms too.
deepgram.isApiKeyValid()
I created this package for my own needs since there are no dart sdk for deepgram. Happy to share !
Don't hesitate to ask for new features or to contribute on GitHub !
If you'd like to support this project, consider contributing here. Thank you! :)