A speech-to-text application which allows users to convert...well...speech to text using AVAudioEngine.
This app allows you to record audio and then transcribe it into text. I created this app to mark the United Nations' International Day of Persons with Disabilities and hope it can encourage others on GitHub to improve and better the app for it to grow.
If you'd like to use speech-recognition, you'll need to install it first. You can do so in one of two ways.
To install the Xcode project using the command line, first enter your desired directory as follows:
cd /Desktop/Xcode_Projects/
And then, paste the following to install the project to your desired folder.
git clone https://github.com/vhanagwal/speech-recognition.git
Alternatively, you can download it via the "Clone or Download" button at the top right of the repository.
This project is open source not only to share with the community, but to grow as well. I'd gladly welcome any contributions on this, or my other projects. To do so, follow the directions below.
Use the following link to fork this repository:
https://github.com/vhanagwal/speech-recognition/fork
Now, create a branch containing your newly added features with the following terminal command:
git checkout -b feature/fooBar
Once you're done coding up the changes, commit them to the new branch you made.
git commit -am 'Add some fooBar'
Then, to get the changes into GitHub, you can push them as follows:
git push origin feature/fooBar
Finally, create a new pull request to get my attention. It may take a few days for me to look at it, but make sure you format your comment like this:
Title: <create a descriptive title>
Date: <today's date>
Description: <a detailed description of what you did>