├── .gitignore ├── README.md ├── android ├── .classpath ├── .gitignore ├── .settings │ ├── com.aptana.editor.common.prefs │ ├── org.eclipse.jdt.apt.core.prefs │ └── org.eclipse.jdt.core.prefs ├── CHANGELOG.txt ├── LICENSE ├── README.md ├── assets │ └── README ├── build.properties ├── build.xml ├── dist │ ├── bencoding.utterance-android-0.2.zip │ ├── bencoding.utterance-android-0.3.zip │ ├── bencoding.utterance-android-0.4.zip │ └── bencoding.utterance-android-0.5.zip ├── documentation │ ├── index.md │ ├── stt.md │ └── tts.md ├── example │ ├── app.js │ ├── speech_to_text.js │ └── text_to_speech.js ├── hooks │ ├── README │ ├── add.py │ ├── install.py │ ├── remove.py │ └── uninstall.py ├── libs │ ├── armeabi-v7a │ │ └── libbencoding.utterance.so │ ├── armeabi │ │ └── libbencoding.utterance.so │ └── x86 │ │ └── libbencoding.utterance.so ├── manifest ├── platform │ └── README ├── src │ └── bencoding │ │ └── utterance │ │ ├── InstallTTSDataProxy.java │ │ ├── SpeechProxy.java │ │ ├── SpeechToTextProxy.java │ │ └── UtteranceModule.java └── timodule.xml ├── documentation ├── index.md ├── stt.md └── tts.md └── ios ├── .settings └── com.aptana.editor.common.prefs ├── BencodingUtterance_Prefix.pch ├── Classes ├── .gitignore ├── BencodingUtteranceModule.h ├── BencodingUtteranceModule.m ├── BencodingUtteranceModuleAssets.h ├── BencodingUtteranceModuleAssets.m ├── BencodingUtteranceSpeechProxy.h └── BencodingUtteranceSpeechProxy.m ├── LICENSE ├── assets └── README ├── build.py ├── dist ├── bencoding.utterance-iphone-0.1.zip ├── bencoding.utterance-iphone-0.2.zip ├── bencoding.utterance-iphone-0.4.zip └── bencoding.utterance-iphone-0.5.beta.zip ├── documentation ├── index.md └── tts.md ├── example └── app.js ├── hooks ├── README ├── add.py ├── install.py ├── remove.py └── uninstall.py ├── manifest ├── module.xcconfig ├── platform └── README ├── timodule.xml ├── titanium.xcconfig └── utterance.xcodeproj └── project.pbxproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/README.md -------------------------------------------------------------------------------- /android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/.classpath -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | bin 3 | build 4 | .apt_generated 5 | -------------------------------------------------------------------------------- /android/.settings/com.aptana.editor.common.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/.settings/com.aptana.editor.common.prefs -------------------------------------------------------------------------------- /android/.settings/org.eclipse.jdt.apt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/.settings/org.eclipse.jdt.apt.core.prefs -------------------------------------------------------------------------------- /android/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /android/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/CHANGELOG.txt -------------------------------------------------------------------------------- /android/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/LICENSE -------------------------------------------------------------------------------- /android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/README.md -------------------------------------------------------------------------------- /android/assets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/assets/README -------------------------------------------------------------------------------- /android/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/build.properties -------------------------------------------------------------------------------- /android/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/build.xml -------------------------------------------------------------------------------- /android/dist/bencoding.utterance-android-0.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/dist/bencoding.utterance-android-0.2.zip -------------------------------------------------------------------------------- /android/dist/bencoding.utterance-android-0.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/dist/bencoding.utterance-android-0.3.zip -------------------------------------------------------------------------------- /android/dist/bencoding.utterance-android-0.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/dist/bencoding.utterance-android-0.4.zip -------------------------------------------------------------------------------- /android/dist/bencoding.utterance-android-0.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/dist/bencoding.utterance-android-0.5.zip -------------------------------------------------------------------------------- /android/documentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/documentation/index.md -------------------------------------------------------------------------------- /android/documentation/stt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/documentation/stt.md -------------------------------------------------------------------------------- /android/documentation/tts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/documentation/tts.md -------------------------------------------------------------------------------- /android/example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/example/app.js -------------------------------------------------------------------------------- /android/example/speech_to_text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/example/speech_to_text.js -------------------------------------------------------------------------------- /android/example/text_to_speech.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/example/text_to_speech.js -------------------------------------------------------------------------------- /android/hooks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/hooks/README -------------------------------------------------------------------------------- /android/hooks/add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/hooks/add.py -------------------------------------------------------------------------------- /android/hooks/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/hooks/install.py -------------------------------------------------------------------------------- /android/hooks/remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/hooks/remove.py -------------------------------------------------------------------------------- /android/hooks/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/hooks/uninstall.py -------------------------------------------------------------------------------- /android/libs/armeabi-v7a/libbencoding.utterance.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/libs/armeabi-v7a/libbencoding.utterance.so -------------------------------------------------------------------------------- /android/libs/armeabi/libbencoding.utterance.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/libs/armeabi/libbencoding.utterance.so -------------------------------------------------------------------------------- /android/libs/x86/libbencoding.utterance.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/libs/x86/libbencoding.utterance.so -------------------------------------------------------------------------------- /android/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/manifest -------------------------------------------------------------------------------- /android/platform/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/platform/README -------------------------------------------------------------------------------- /android/src/bencoding/utterance/InstallTTSDataProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/src/bencoding/utterance/InstallTTSDataProxy.java -------------------------------------------------------------------------------- /android/src/bencoding/utterance/SpeechProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/src/bencoding/utterance/SpeechProxy.java -------------------------------------------------------------------------------- /android/src/bencoding/utterance/SpeechToTextProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/src/bencoding/utterance/SpeechToTextProxy.java -------------------------------------------------------------------------------- /android/src/bencoding/utterance/UtteranceModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/src/bencoding/utterance/UtteranceModule.java -------------------------------------------------------------------------------- /android/timodule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/android/timodule.xml -------------------------------------------------------------------------------- /documentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/documentation/index.md -------------------------------------------------------------------------------- /documentation/stt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/documentation/stt.md -------------------------------------------------------------------------------- /documentation/tts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/documentation/tts.md -------------------------------------------------------------------------------- /ios/.settings/com.aptana.editor.common.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/.settings/com.aptana.editor.common.prefs -------------------------------------------------------------------------------- /ios/BencodingUtterance_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/BencodingUtterance_Prefix.pch -------------------------------------------------------------------------------- /ios/Classes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/Classes/.gitignore -------------------------------------------------------------------------------- /ios/Classes/BencodingUtteranceModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/Classes/BencodingUtteranceModule.h -------------------------------------------------------------------------------- /ios/Classes/BencodingUtteranceModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/Classes/BencodingUtteranceModule.m -------------------------------------------------------------------------------- /ios/Classes/BencodingUtteranceModuleAssets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/Classes/BencodingUtteranceModuleAssets.h -------------------------------------------------------------------------------- /ios/Classes/BencodingUtteranceModuleAssets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/Classes/BencodingUtteranceModuleAssets.m -------------------------------------------------------------------------------- /ios/Classes/BencodingUtteranceSpeechProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/Classes/BencodingUtteranceSpeechProxy.h -------------------------------------------------------------------------------- /ios/Classes/BencodingUtteranceSpeechProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/Classes/BencodingUtteranceSpeechProxy.m -------------------------------------------------------------------------------- /ios/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/LICENSE -------------------------------------------------------------------------------- /ios/assets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/assets/README -------------------------------------------------------------------------------- /ios/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/build.py -------------------------------------------------------------------------------- /ios/dist/bencoding.utterance-iphone-0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/dist/bencoding.utterance-iphone-0.1.zip -------------------------------------------------------------------------------- /ios/dist/bencoding.utterance-iphone-0.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/dist/bencoding.utterance-iphone-0.2.zip -------------------------------------------------------------------------------- /ios/dist/bencoding.utterance-iphone-0.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/dist/bencoding.utterance-iphone-0.4.zip -------------------------------------------------------------------------------- /ios/dist/bencoding.utterance-iphone-0.5.beta.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/dist/bencoding.utterance-iphone-0.5.beta.zip -------------------------------------------------------------------------------- /ios/documentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/documentation/index.md -------------------------------------------------------------------------------- /ios/documentation/tts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/documentation/tts.md -------------------------------------------------------------------------------- /ios/example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/example/app.js -------------------------------------------------------------------------------- /ios/hooks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/hooks/README -------------------------------------------------------------------------------- /ios/hooks/add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/hooks/add.py -------------------------------------------------------------------------------- /ios/hooks/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/hooks/install.py -------------------------------------------------------------------------------- /ios/hooks/remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/hooks/remove.py -------------------------------------------------------------------------------- /ios/hooks/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/hooks/uninstall.py -------------------------------------------------------------------------------- /ios/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/manifest -------------------------------------------------------------------------------- /ios/module.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/module.xcconfig -------------------------------------------------------------------------------- /ios/platform/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/platform/README -------------------------------------------------------------------------------- /ios/timodule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/timodule.xml -------------------------------------------------------------------------------- /ios/titanium.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/titanium.xcconfig -------------------------------------------------------------------------------- /ios/utterance.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbahrenburg/Utterance/HEAD/ios/utterance.xcodeproj/project.pbxproj --------------------------------------------------------------------------------