jasonericdavis / speech-recognition-using-cplusplus

Speech recognition in C++ using Rev.ai's speech to text API.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Speech Recognition Using C++

Speech recognition in C++ using Rev.ai's speech to text API and Microsofts C++Rest SDK.

Setup

  1. Get an access token from Rev.ai's.

  2. Install the C++RestSDK using the Getting Started guide.

  3. Update the source files with your access token

  4. If using VSCode select the file you would like to execute and launch the g++ - Build and debug active file debug configuration.

    or run the following commmands:

     g++ -std=c++11 -g <cpp_filename> -lboost_system -lcrypto -lssl  -lcpprest -pthread -o output/<output_filename>
    
     output/<output_filename>
    

Credits

About

Speech recognition in C++ using Rev.ai's speech to text API.


Languages

Language:C++ 100.0%