Optimized parameters for Deepgram live streaming transcription (self-hosted) #998
-
Hi, may I know what would be the optimized parameters for for Deepgram live streaming transcription. I am using Websockets from my Frontend (react) to Backend (FastAPI) and another Websocket from my BE to Deepgram API (self-hosted) Currently I am using. It's working ok, but was thinking if I can improve it further. sampleRate = 16000 |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
Hey there! It looks like you haven't connected your GitHub account to your Deepgram account. You can do this at https://community.deepgram.com - being verified through this process will allow our team to help you in a much more streamlined fashion. |
Beta Was this translation helpful? Give feedback.
-
It looks like we're missing some important information to help debug your issue. Would you mind providing us with the following details in a reply?
|
Beta Was this translation helpful? Give feedback.
-
Using self-hosted, live streaming Speech-to-text API |
Beta Was this translation helpful? Give feedback.
-
It seems like you're using Deepgram's live streaming transcription with a self-hosted setup. The parameters you're currently using (sampleRate = 16000, channelCount = 2, chunkDuration = 200 milliseconds) are generally a good starting point. However, the optimal parameters can depend on various factors such as the quality of your audio input, the network conditions, and the specific requirements of your application. If you're looking to improve the performance, you might consider the following:
Remember to test different parameters under realistic conditions to find the optimal settings for your specific use case. If you need further assistance, feel free to provide more details about your application and the issues you're facing.
|
Beta Was this translation helpful? Give feedback.
It seems like you're using Deepgram's live streaming transcription with a self-hosted setup. The parameters you're currently using (sampleRate = 16000, channelCount = 2, chunkDuration = 200 milliseconds) are generally a good starting point. However, the optimal parameters can depend on various factors such as the quality of your audio input, the network conditions, and the specific requirements of your application.
If you're looking to improve the performance, you might consider the following:
Audio Quality: Ensure that the audio input is clear and free of background noise. The quality of the transcription is directly related to the quality of the audio input.
Network Conditions: If y…