You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repo is to create a fun voice-controlled graphical Tic Tac Toe game in C++ using the CTurtle library. The graphics are based on Jesse Walker's repo here. To play the game, say a number between 1 and 9 into your microphone. You may want to start with the silent version first here. You need a free Microsoft Azure subscription for the voice part to work. You also need to install the Microsoft Cognitive Service Speech package in Visual Studio 2019.
We’ll use the Microsoft Azure Cognitive Service for both text to speech and speech recognition. You’ll need a subscription for that and it’s free for our purpose. The detailed instructions are here https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/overview#try-the-speech-service-for-free. You need both a Microsoft account and an Azure account. Log into the Azure portal and create the Azure resource to obtain your subscription key. Your subscription key is a long string of letters and numbers. You also need a region code based on where you live: examples are “eastus”, “westus” and so on.
You should first learn how speech recognition and text to speech work in C++ using Azure based on instructions here.