Sample Rate
Sample Rate allows you to specify the sample rate of your submitted audio.
sample_rate
int32
Enable Feature
If you are using the Sample Rate feature Encoding is also required.
To enable Sample Rate, when you call Deepgram’s API, add a sample_rate
parameter in the query string and set it to the sample rate of your submitted audio.
sample_rate=SAMPLE_RATE_VALUE
url \
--request POST \
--header 'Authorization: Token YOUR_DEEPGRAM_API_KEY' \
--header 'Content-Type: audio/mp3' \
--data-binary @youraudio.mp3 \
--url 'https://api.deepgram.com/v1/listen?sample_rate=8000&encoding=linear16'
When submitting audio encoded with the Adaptive Multi-Rate (AMR) codec, you must submit specific Sample Rate values:
amr-nb
: AMR narrowband codec. When using this option, you must specifysample_rate=8000
(encoding=amr-nb&sample_rate=8000
).amr-wb
: AMR wideband codec. When using this option, you must also specifysample_rate=16000
(encoding=amr-wb&sample_rate=16000
).
Updated 13 days ago