├── .gitignore ├── README.md ├── example-gstt_api_only ├── .cproject ├── .project ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── cacert.pem │ │ └── speechToText.flac ├── config.make └── src │ ├── main.cpp │ ├── ofAppSTT.cpp │ └── ofAppSTT.h ├── example-gstt_basics ├── .cproject ├── .project ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── cacert.pem ├── config.make └── src │ ├── main.cpp │ ├── ofGsttApp.cpp │ └── ofGsttApp.h ├── example-gstt_chrome_workaround ├── .cproject ├── .project ├── Makefile ├── addons.make ├── bin │ └── data │ │ └── web │ │ └── index.html ├── config.make └── src │ ├── main.cpp │ ├── ofAppSTTWorkaround.cpp │ └── ofAppSTTWorkaround.h ├── libs ├── sndfile │ ├── includes │ │ ├── sndfile.h │ │ └── sndfile.hh │ └── lib │ │ └── linux │ │ └── libsndfile.a └── stringencoders │ ├── modp_b64.c │ ├── modp_b64.h │ └── modp_b64_data.h └── src ├── googleResponseParser.h ├── ofxGSTT.cpp ├── ofxGSTT.h ├── ofxGSTTEvent.h ├── ofxGSTTTranscriptionThread.cpp └── ofxGSTTTranscriptionThread.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/README.md -------------------------------------------------------------------------------- /example-gstt_api_only/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_api_only/.cproject -------------------------------------------------------------------------------- /example-gstt_api_only/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_api_only/.project -------------------------------------------------------------------------------- /example-gstt_api_only/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_api_only/Makefile -------------------------------------------------------------------------------- /example-gstt_api_only/addons.make: -------------------------------------------------------------------------------- 1 | ofxSSL -------------------------------------------------------------------------------- /example-gstt_api_only/bin/data/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_api_only/bin/data/cacert.pem -------------------------------------------------------------------------------- /example-gstt_api_only/bin/data/speechToText.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_api_only/bin/data/speechToText.flac -------------------------------------------------------------------------------- /example-gstt_api_only/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_api_only/config.make -------------------------------------------------------------------------------- /example-gstt_api_only/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_api_only/src/main.cpp -------------------------------------------------------------------------------- /example-gstt_api_only/src/ofAppSTT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_api_only/src/ofAppSTT.cpp -------------------------------------------------------------------------------- /example-gstt_api_only/src/ofAppSTT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_api_only/src/ofAppSTT.h -------------------------------------------------------------------------------- /example-gstt_basics/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_basics/.cproject -------------------------------------------------------------------------------- /example-gstt_basics/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_basics/.project -------------------------------------------------------------------------------- /example-gstt_basics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_basics/Makefile -------------------------------------------------------------------------------- /example-gstt_basics/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_basics/addons.make -------------------------------------------------------------------------------- /example-gstt_basics/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-gstt_basics/bin/data/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_basics/bin/data/cacert.pem -------------------------------------------------------------------------------- /example-gstt_basics/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_basics/config.make -------------------------------------------------------------------------------- /example-gstt_basics/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_basics/src/main.cpp -------------------------------------------------------------------------------- /example-gstt_basics/src/ofGsttApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_basics/src/ofGsttApp.cpp -------------------------------------------------------------------------------- /example-gstt_basics/src/ofGsttApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_basics/src/ofGsttApp.h -------------------------------------------------------------------------------- /example-gstt_chrome_workaround/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_chrome_workaround/.cproject -------------------------------------------------------------------------------- /example-gstt_chrome_workaround/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_chrome_workaround/.project -------------------------------------------------------------------------------- /example-gstt_chrome_workaround/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_chrome_workaround/Makefile -------------------------------------------------------------------------------- /example-gstt_chrome_workaround/addons.make: -------------------------------------------------------------------------------- 1 | ofxLibwebsockets 2 | -------------------------------------------------------------------------------- /example-gstt_chrome_workaround/bin/data/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_chrome_workaround/bin/data/web/index.html -------------------------------------------------------------------------------- /example-gstt_chrome_workaround/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_chrome_workaround/config.make -------------------------------------------------------------------------------- /example-gstt_chrome_workaround/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_chrome_workaround/src/main.cpp -------------------------------------------------------------------------------- /example-gstt_chrome_workaround/src/ofAppSTTWorkaround.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_chrome_workaround/src/ofAppSTTWorkaround.cpp -------------------------------------------------------------------------------- /example-gstt_chrome_workaround/src/ofAppSTTWorkaround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/example-gstt_chrome_workaround/src/ofAppSTTWorkaround.h -------------------------------------------------------------------------------- /libs/sndfile/includes/sndfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/libs/sndfile/includes/sndfile.h -------------------------------------------------------------------------------- /libs/sndfile/includes/sndfile.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/libs/sndfile/includes/sndfile.hh -------------------------------------------------------------------------------- /libs/sndfile/lib/linux/libsndfile.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/libs/sndfile/lib/linux/libsndfile.a -------------------------------------------------------------------------------- /libs/stringencoders/modp_b64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/libs/stringencoders/modp_b64.c -------------------------------------------------------------------------------- /libs/stringencoders/modp_b64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/libs/stringencoders/modp_b64.h -------------------------------------------------------------------------------- /libs/stringencoders/modp_b64_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/libs/stringencoders/modp_b64_data.h -------------------------------------------------------------------------------- /src/googleResponseParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/src/googleResponseParser.h -------------------------------------------------------------------------------- /src/ofxGSTT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/src/ofxGSTT.cpp -------------------------------------------------------------------------------- /src/ofxGSTT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/src/ofxGSTT.h -------------------------------------------------------------------------------- /src/ofxGSTTEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/src/ofxGSTTEvent.h -------------------------------------------------------------------------------- /src/ofxGSTTTranscriptionThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/src/ofxGSTTTranscriptionThread.cpp -------------------------------------------------------------------------------- /src/ofxGSTTTranscriptionThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxGSTT/HEAD/src/ofxGSTTTranscriptionThread.h --------------------------------------------------------------------------------