Skip to content

Instantly share code, notes, and snippets.

@codemillmatt
Created April 24, 2020 21:41
Show Gist options
  • Save codemillmatt/7368e839aa9cd9c66c4fbdfaa1a5b8ad to your computer and use it in GitHub Desktop.
Save codemillmatt/7368e839aa9cd9c66c4fbdfaa1a5b8ad to your computer and use it in GitHub Desktop.
Creating an Azure Cognitive Services Speech Service
RESOURCE_GROUP_NAME = "PUT THE NAME OF YOUR RESOURCE GROUP HERE CALL IT WHATEVS"
SPEECH_SERVICE_NAME = "PUT THE NAME OF YOUR SPEECH SERVICE HERE THE NAME IS YOUR CHOICE"
az cognitiveservices account create -n $SPEECH_SERVICE_NAME -g $RESOURCE_GROUP_NAME --kind SpeechServices --sku F0 -l westus
az cognitiveservices account keys list -n $SPEECH_SERVICE_NAME -g $RESOURCE_GROUP_NAME
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment