├── .clang-format ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── documentation.yml └── workflows │ ├── android-browserstack.yml │ ├── android-demos.yml │ ├── android-perf.yml │ ├── android-upload.yml │ ├── c-codestyle.yml │ ├── c-demos.yml │ ├── dotnet-codestyle.yml │ ├── dotnet-demos.yml │ ├── dotnet.yml │ ├── ios-browserstack.yml │ ├── ios-demos.yml │ ├── ios-perf.yml │ ├── ios-validate.yml │ ├── java-codestyle.yml │ ├── link-check.yml │ ├── nodejs-codestyle.yml │ ├── nodejs-demos.yml │ ├── nodejs-perf.yml │ ├── nodejs.yml │ ├── python-codestyle.yml │ ├── python-demos.yml │ ├── python-perf.yml │ ├── python.yml │ ├── spell-check.yml │ ├── swift-codestyle.yml │ ├── web-codestyle.yml │ ├── web-demos.yml │ ├── web-perf.yml │ └── web.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Package.swift ├── README.md ├── binding ├── android │ ├── Cobra │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── cobra │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── consumer-rules.pro │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── ai │ │ │ │ │ └── picovoice │ │ │ │ │ └── cobra │ │ │ │ │ ├── Cobra.java │ │ │ │ │ ├── CobraNative.java │ │ │ │ │ └── exception │ │ │ │ │ ├── CobraActivationException.java │ │ │ │ │ ├── CobraActivationLimitException.java │ │ │ │ │ ├── CobraActivationRefusedException.java │ │ │ │ │ ├── CobraActivationThrottledException.java │ │ │ │ │ ├── CobraException.java │ │ │ │ │ ├── CobraIOException.java │ │ │ │ │ ├── CobraInvalidArgumentException.java │ │ │ │ │ ├── CobraInvalidStateException.java │ │ │ │ │ ├── CobraKeyException.java │ │ │ │ │ ├── CobraMemoryException.java │ │ │ │ │ ├── CobraRuntimeException.java │ │ │ │ │ └── CobraStopIterationException.java │ │ │ │ └── jniLibs │ │ │ │ └── .gitkeep │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── CobraTestApp │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── cobra-test-app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── ai │ │ │ │ │ └── picovoice │ │ │ │ │ └── cobra │ │ │ │ │ └── testapp │ │ │ │ │ ├── BaseTest.java │ │ │ │ │ ├── IntegrationTest.java │ │ │ │ │ └── PerformanceTest.java │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── ic_launcher-playstore.png │ │ │ │ ├── java │ │ │ │ └── ai │ │ │ │ │ └── picovoice │ │ │ │ │ └── cobra │ │ │ │ │ └── testapp │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── TestResult.java │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── button_background.xml │ │ │ │ ├── button_disabled.xml │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── list_view.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── copy_test_resources.sh │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── README.md ├── dotnet │ ├── .editorconfig │ ├── .gitignore │ ├── Cobra.sln │ ├── Cobra │ │ ├── Cobra.cs │ │ ├── Cobra.csproj │ │ ├── Cobra.netstandard2.0.targets │ │ ├── Cobra.targets │ │ ├── CobraException.cs │ │ ├── Content │ │ │ └── pv_circle_512.png │ │ └── Utils.cs │ ├── CobraTest │ │ ├── CobraTest.csproj │ │ └── MainTest.cs │ └── README.md ├── ios │ ├── Cobra-iOS.podspec │ ├── Cobra.swift │ ├── CobraAppTest │ │ ├── .gitignore │ │ ├── CobraAppTest.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── CobraAppTest.xcscheme │ │ │ │ └── PerformanceTest.xcscheme │ │ ├── CobraAppTest │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AccentColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── ViewController.swift │ │ ├── CobraAppTestUITests │ │ │ ├── CobraAppTestUITests.swift │ │ │ └── Info.plist │ │ └── PerformanceTest │ │ │ ├── Info.plist │ │ │ └── PerformanceTest.swift │ ├── CobraErrors.swift │ └── README.md ├── nodejs │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .npmignore │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── copy.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── cobra.ts │ │ ├── errors.ts │ │ ├── index.ts │ │ ├── platforms.ts │ │ ├── pv_status_t.ts │ │ ├── types.ts │ │ └── wave_util.ts │ ├── test │ │ ├── index.test.ts │ │ ├── perf.test.ts │ │ └── test_utils.ts │ ├── tsconfig.json │ └── yarn.lock ├── python │ ├── .gitignore │ ├── README.md │ ├── __init__.py │ ├── _cobra.py │ ├── _factory.py │ ├── _util.py │ ├── requirements.txt │ ├── setup.py │ ├── test_cobra.py │ ├── test_cobra_perf.py │ └── test_util.py └── web │ ├── .babelrc │ ├── .eslintrc.js │ ├── .gitignore │ ├── .npmignore │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── cypress.config.ts │ ├── cypress │ ├── fixtures │ │ └── .gitkeep │ ├── support │ │ ├── commands.ts │ │ ├── component-index.html │ │ └── index.ts │ └── tsconfig.json │ ├── module.d.ts │ ├── package.json │ ├── rollup.config.js │ ├── scripts │ ├── copy_wasm.js │ └── setup_test.js │ ├── src │ ├── cobra.ts │ ├── cobra_errors.ts │ ├── cobra_worker.ts │ ├── cobra_worker_handler.ts │ ├── index.ts │ └── types.ts │ ├── test │ ├── cobra.test.ts │ └── cobra_perf.test.ts │ ├── tsconfig.json │ └── yarn.lock ├── demo ├── android │ ├── .gitignore │ ├── Activity │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.gradle │ │ ├── cobra-activity-demo-app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── ic_launcher-playstore.png │ │ │ │ ├── java │ │ │ │ └── ai │ │ │ │ │ └── picovoice │ │ │ │ │ └── cobraactivitydemo │ │ │ │ │ ├── Gauge.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── Needle.java │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── button_background.xml │ │ │ │ ├── button_disabled.xml │ │ │ │ ├── error_view.xml │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── layout │ │ │ │ └── cobra_activity_demo.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── attrs.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── copy_test_resources.sh │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── README.md ├── c │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Preload.CMake │ ├── README.md │ ├── cobra_demo_file.c │ ├── cobra_demo_mic.c │ └── test │ │ ├── requirements.txt │ │ ├── test_cobra_c.py │ │ └── test_util.py ├── dotnet │ ├── .editorconfig │ ├── .gitignore │ ├── CobraDemo.sln │ ├── CobraDemo │ │ ├── CobraDemo.csproj │ │ ├── FileDemo.cs │ │ └── MicDemo.cs │ └── README.md ├── ios │ ├── .gitignore │ ├── CobraDemo │ │ ├── .gitignore │ │ ├── CobraDemo.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── CobraDemo.xcscheme │ │ └── CobraDemo │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── pv_circle_512-1024.png │ │ │ │ ├── pv_circle_512-20.png │ │ │ │ ├── pv_circle_512-20@2x.png │ │ │ │ ├── pv_circle_512-20@3x.png │ │ │ │ ├── pv_circle_512-29.png │ │ │ │ ├── pv_circle_512-29@2x.png │ │ │ │ ├── pv_circle_512-29@3x.png │ │ │ │ ├── pv_circle_512-40.png │ │ │ │ ├── pv_circle_512-40@2x.png │ │ │ │ ├── pv_circle_512-40@3x.png │ │ │ │ ├── pv_circle_512-60@2x.png │ │ │ │ ├── pv_circle_512-60@3x.png │ │ │ │ ├── pv_circle_512-76.png │ │ │ │ ├── pv_circle_512-76@2x.png │ │ │ │ └── pv_circle_512-83.5@2x.png │ │ │ ├── CobraDemoApp.swift │ │ │ ├── ContentView.swift │ │ │ ├── Info.plist │ │ │ └── ViewModel.swift │ └── README.md ├── nodejs │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── file.js │ ├── mic.js │ ├── package.json │ └── yarn.lock ├── python │ ├── .gitignore │ ├── README.md │ ├── cobra_demo_file.py │ ├── cobra_demo_mic.py │ ├── requirements.txt │ └── setup.py └── web │ ├── .gitignore │ ├── .npmignore │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── eslint.config.mjs │ ├── index.html │ ├── package.json │ ├── scripts │ └── cobra.js │ └── yarn.lock ├── include ├── picovoice.h └── pv_cobra.h ├── lib ├── android │ ├── arm64-v8a │ │ └── libpv_cobra.so │ ├── armeabi-v7a │ │ └── libpv_cobra.so │ ├── x86 │ │ └── libpv_cobra.so │ └── x86_64 │ │ └── libpv_cobra.so ├── ios │ └── PvCobra.xcframework │ │ ├── Info.plist │ │ ├── ios-arm64 │ │ └── PvCobra.framework │ │ │ ├── Headers │ │ │ ├── PvCobra.h │ │ │ ├── picovoice.h │ │ │ └── pv_cobra.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ └── PvCobra │ │ └── ios-arm64_x86_64-simulator │ │ └── PvCobra.framework │ │ ├── Headers │ │ ├── PvCobra.h │ │ ├── picovoice.h │ │ └── pv_cobra.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ └── PvCobra ├── linux │ └── x86_64 │ │ └── libpv_cobra.so ├── mac │ ├── arm64 │ │ └── libpv_cobra.dylib │ └── x86_64 │ │ └── libpv_cobra.dylib ├── node │ ├── linux │ │ └── x86_64 │ │ │ └── pv_cobra.node │ ├── mac │ │ ├── arm64 │ │ │ └── pv_cobra.node │ │ └── x86_64 │ │ │ └── pv_cobra.node │ ├── raspberry-pi │ │ ├── cortex-a53-aarch64 │ │ │ └── pv_cobra.node │ │ ├── cortex-a53 │ │ │ └── pv_cobra.node │ │ ├── cortex-a72-aarch64 │ │ │ └── pv_cobra.node │ │ ├── cortex-a72 │ │ │ └── pv_cobra.node │ │ ├── cortex-a76-aarch64 │ │ │ └── pv_cobra.node │ │ └── cortex-a76 │ │ │ └── pv_cobra.node │ └── windows │ │ ├── amd64 │ │ └── pv_cobra.node │ │ └── arm64 │ │ └── pv_cobra.node ├── raspberry-pi │ ├── arm11 │ │ └── libpv_cobra.so │ ├── cortex-a53-aarch64 │ │ └── libpv_cobra.so │ ├── cortex-a53 │ │ └── libpv_cobra.so │ ├── cortex-a72-aarch64 │ │ └── libpv_cobra.so │ ├── cortex-a72 │ │ └── libpv_cobra.so │ ├── cortex-a76-aarch64 │ │ └── libpv_cobra.so │ └── cortex-a76 │ │ └── libpv_cobra.so ├── wasm │ ├── pv_cobra.js │ ├── pv_cobra.wasm │ ├── pv_cobra_simd.js │ └── pv_cobra_simd.wasm └── windows │ ├── amd64 │ └── libpv_cobra.dll │ └── arm64 │ └── libpv_cobra.dll ├── res ├── .lint │ ├── c │ │ └── formatter.py │ ├── java │ │ ├── checkstyle-10.5.0-all.jar │ │ ├── checkstyle.xml │ │ └── suppress.xml │ ├── spell-check │ │ ├── .cspell.json │ │ └── dict.txt │ └── swift │ │ └── .swiftlint.yml ├── audio │ └── sample.wav └── scripts │ └── machine-state.sh └── script └── automation └── browserstack.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/ISSUE_TEMPLATE/documentation.yml -------------------------------------------------------------------------------- /.github/workflows/android-browserstack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/android-browserstack.yml -------------------------------------------------------------------------------- /.github/workflows/android-demos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/android-demos.yml -------------------------------------------------------------------------------- /.github/workflows/android-perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/android-perf.yml -------------------------------------------------------------------------------- /.github/workflows/android-upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/android-upload.yml -------------------------------------------------------------------------------- /.github/workflows/c-codestyle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/c-codestyle.yml -------------------------------------------------------------------------------- /.github/workflows/c-demos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/c-demos.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet-codestyle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/dotnet-codestyle.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet-demos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/dotnet-demos.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.github/workflows/ios-browserstack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/ios-browserstack.yml -------------------------------------------------------------------------------- /.github/workflows/ios-demos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/ios-demos.yml -------------------------------------------------------------------------------- /.github/workflows/ios-perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/ios-perf.yml -------------------------------------------------------------------------------- /.github/workflows/ios-validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/ios-validate.yml -------------------------------------------------------------------------------- /.github/workflows/java-codestyle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/java-codestyle.yml -------------------------------------------------------------------------------- /.github/workflows/link-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/link-check.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs-codestyle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/nodejs-codestyle.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs-demos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/nodejs-demos.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs-perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/nodejs-perf.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github/workflows/python-codestyle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/python-codestyle.yml -------------------------------------------------------------------------------- /.github/workflows/python-demos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/python-demos.yml -------------------------------------------------------------------------------- /.github/workflows/python-perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/python-perf.yml -------------------------------------------------------------------------------- /.github/workflows/python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/python.yml -------------------------------------------------------------------------------- /.github/workflows/spell-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/spell-check.yml -------------------------------------------------------------------------------- /.github/workflows/swift-codestyle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/swift-codestyle.yml -------------------------------------------------------------------------------- /.github/workflows/web-codestyle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/web-codestyle.yml -------------------------------------------------------------------------------- /.github/workflows/web-demos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/web-demos.yml -------------------------------------------------------------------------------- /.github/workflows/web-perf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/web-perf.yml -------------------------------------------------------------------------------- /.github/workflows/web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.github/workflows/web.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/README.md -------------------------------------------------------------------------------- /binding/android/Cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/.gitignore -------------------------------------------------------------------------------- /binding/android/Cobra/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/build.gradle -------------------------------------------------------------------------------- /binding/android/Cobra/cobra/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | src/main/jniLibs/**/*.so -------------------------------------------------------------------------------- /binding/android/Cobra/cobra/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/cobra/build.gradle -------------------------------------------------------------------------------- /binding/android/Cobra/cobra/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -keep class ai.picovoice.cobra.*Exception { (...); } -------------------------------------------------------------------------------- /binding/android/Cobra/cobra/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | -keep class ai.picovoice.cobra.*Exception { (...); } -------------------------------------------------------------------------------- /binding/android/Cobra/cobra/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/cobra/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/Cobra.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/Cobra.java -------------------------------------------------------------------------------- /binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/CobraNative.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/CobraNative.java -------------------------------------------------------------------------------- /binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraActivationException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraActivationException.java -------------------------------------------------------------------------------- /binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraActivationLimitException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraActivationLimitException.java -------------------------------------------------------------------------------- /binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraActivationRefusedException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraActivationRefusedException.java -------------------------------------------------------------------------------- /binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraActivationThrottledException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraActivationThrottledException.java -------------------------------------------------------------------------------- /binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraException.java -------------------------------------------------------------------------------- /binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraIOException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraIOException.java -------------------------------------------------------------------------------- /binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraInvalidArgumentException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraInvalidArgumentException.java -------------------------------------------------------------------------------- /binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraInvalidStateException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraInvalidStateException.java -------------------------------------------------------------------------------- /binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraKeyException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraKeyException.java -------------------------------------------------------------------------------- /binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraMemoryException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraMemoryException.java -------------------------------------------------------------------------------- /binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraRuntimeException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraRuntimeException.java -------------------------------------------------------------------------------- /binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraStopIterationException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/cobra/src/main/java/ai/picovoice/cobra/exception/CobraStopIterationException.java -------------------------------------------------------------------------------- /binding/android/Cobra/cobra/src/main/jniLibs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /binding/android/Cobra/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/gradle.properties -------------------------------------------------------------------------------- /binding/android/Cobra/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /binding/android/Cobra/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /binding/android/Cobra/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/gradlew -------------------------------------------------------------------------------- /binding/android/Cobra/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/Cobra/gradlew.bat -------------------------------------------------------------------------------- /binding/android/Cobra/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "Cobra" 2 | include ':cobra' 3 | -------------------------------------------------------------------------------- /binding/android/CobraTestApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/.gitignore -------------------------------------------------------------------------------- /binding/android/CobraTestApp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/build.gradle -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | *.wav -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/cobra-test-app/build.gradle -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/cobra-test-app/proguard-rules.pro -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/src/androidTest/java/ai/picovoice/cobra/testapp/BaseTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/cobra-test-app/src/androidTest/java/ai/picovoice/cobra/testapp/BaseTest.java -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/src/androidTest/java/ai/picovoice/cobra/testapp/IntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/cobra-test-app/src/androidTest/java/ai/picovoice/cobra/testapp/IntegrationTest.java -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/src/androidTest/java/ai/picovoice/cobra/testapp/PerformanceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/cobra-test-app/src/androidTest/java/ai/picovoice/cobra/testapp/PerformanceTest.java -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/cobra-test-app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/cobra-test-app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/src/main/java/ai/picovoice/cobra/testapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/cobra-test-app/src/main/java/ai/picovoice/cobra/testapp/MainActivity.java -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/src/main/java/ai/picovoice/cobra/testapp/TestResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/cobra-test-app/src/main/java/ai/picovoice/cobra/testapp/TestResult.java -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/src/main/res/drawable/button_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/cobra-test-app/src/main/res/drawable/button_background.xml -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/src/main/res/drawable/button_disabled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/cobra-test-app/src/main/res/drawable/button_disabled.xml -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/cobra-test-app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/cobra-test-app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/cobra-test-app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/src/main/res/layout/list_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/cobra-test-app/src/main/res/layout/list_view.xml -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/cobra-test-app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/cobra-test-app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/cobra-test-app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/cobra-test-app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/cobra-test-app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /binding/android/CobraTestApp/cobra-test-app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/cobra-test-app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /binding/android/CobraTestApp/copy_test_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/copy_test_resources.sh -------------------------------------------------------------------------------- /binding/android/CobraTestApp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/gradle.properties -------------------------------------------------------------------------------- /binding/android/CobraTestApp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /binding/android/CobraTestApp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /binding/android/CobraTestApp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/gradlew -------------------------------------------------------------------------------- /binding/android/CobraTestApp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/gradlew.bat -------------------------------------------------------------------------------- /binding/android/CobraTestApp/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/CobraTestApp/settings.gradle -------------------------------------------------------------------------------- /binding/android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/android/README.md -------------------------------------------------------------------------------- /binding/dotnet/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/dotnet/.editorconfig -------------------------------------------------------------------------------- /binding/dotnet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/dotnet/.gitignore -------------------------------------------------------------------------------- /binding/dotnet/Cobra.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/dotnet/Cobra.sln -------------------------------------------------------------------------------- /binding/dotnet/Cobra/Cobra.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/dotnet/Cobra/Cobra.cs -------------------------------------------------------------------------------- /binding/dotnet/Cobra/Cobra.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/dotnet/Cobra/Cobra.csproj -------------------------------------------------------------------------------- /binding/dotnet/Cobra/Cobra.netstandard2.0.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/dotnet/Cobra/Cobra.netstandard2.0.targets -------------------------------------------------------------------------------- /binding/dotnet/Cobra/Cobra.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/dotnet/Cobra/Cobra.targets -------------------------------------------------------------------------------- /binding/dotnet/Cobra/CobraException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/dotnet/Cobra/CobraException.cs -------------------------------------------------------------------------------- /binding/dotnet/Cobra/Content/pv_circle_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/dotnet/Cobra/Content/pv_circle_512.png -------------------------------------------------------------------------------- /binding/dotnet/Cobra/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/dotnet/Cobra/Utils.cs -------------------------------------------------------------------------------- /binding/dotnet/CobraTest/CobraTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/dotnet/CobraTest/CobraTest.csproj -------------------------------------------------------------------------------- /binding/dotnet/CobraTest/MainTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/dotnet/CobraTest/MainTest.cs -------------------------------------------------------------------------------- /binding/dotnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/dotnet/README.md -------------------------------------------------------------------------------- /binding/ios/Cobra-iOS.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/Cobra-iOS.podspec -------------------------------------------------------------------------------- /binding/ios/Cobra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/Cobra.swift -------------------------------------------------------------------------------- /binding/ios/CobraAppTest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/CobraAppTest/.gitignore -------------------------------------------------------------------------------- /binding/ios/CobraAppTest/CobraAppTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/CobraAppTest/CobraAppTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /binding/ios/CobraAppTest/CobraAppTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/CobraAppTest/CobraAppTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /binding/ios/CobraAppTest/CobraAppTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/CobraAppTest/CobraAppTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /binding/ios/CobraAppTest/CobraAppTest.xcodeproj/xcshareddata/xcschemes/CobraAppTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/CobraAppTest/CobraAppTest.xcodeproj/xcshareddata/xcschemes/CobraAppTest.xcscheme -------------------------------------------------------------------------------- /binding/ios/CobraAppTest/CobraAppTest.xcodeproj/xcshareddata/xcschemes/PerformanceTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/CobraAppTest/CobraAppTest.xcodeproj/xcshareddata/xcschemes/PerformanceTest.xcscheme -------------------------------------------------------------------------------- /binding/ios/CobraAppTest/CobraAppTest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/CobraAppTest/CobraAppTest/AppDelegate.swift -------------------------------------------------------------------------------- /binding/ios/CobraAppTest/CobraAppTest/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/CobraAppTest/CobraAppTest/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /binding/ios/CobraAppTest/CobraAppTest/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/CobraAppTest/CobraAppTest/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /binding/ios/CobraAppTest/CobraAppTest/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/CobraAppTest/CobraAppTest/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /binding/ios/CobraAppTest/CobraAppTest/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/CobraAppTest/CobraAppTest/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /binding/ios/CobraAppTest/CobraAppTest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/CobraAppTest/CobraAppTest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /binding/ios/CobraAppTest/CobraAppTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/CobraAppTest/CobraAppTest/Info.plist -------------------------------------------------------------------------------- /binding/ios/CobraAppTest/CobraAppTest/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/CobraAppTest/CobraAppTest/ViewController.swift -------------------------------------------------------------------------------- /binding/ios/CobraAppTest/CobraAppTestUITests/CobraAppTestUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/CobraAppTest/CobraAppTestUITests/CobraAppTestUITests.swift -------------------------------------------------------------------------------- /binding/ios/CobraAppTest/CobraAppTestUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/CobraAppTest/CobraAppTestUITests/Info.plist -------------------------------------------------------------------------------- /binding/ios/CobraAppTest/PerformanceTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/CobraAppTest/PerformanceTest/Info.plist -------------------------------------------------------------------------------- /binding/ios/CobraAppTest/PerformanceTest/PerformanceTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/CobraAppTest/PerformanceTest/PerformanceTest.swift -------------------------------------------------------------------------------- /binding/ios/CobraErrors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/CobraErrors.swift -------------------------------------------------------------------------------- /binding/ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/ios/README.md -------------------------------------------------------------------------------- /binding/nodejs/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | lib 4 | resources 5 | .eslintrc.js 6 | -------------------------------------------------------------------------------- /binding/nodejs/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/nodejs/.eslintrc.js -------------------------------------------------------------------------------- /binding/nodejs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | resources 4 | package-lock.json 5 | dist 6 | -------------------------------------------------------------------------------- /binding/nodejs/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /binding/nodejs/.prettierignore: -------------------------------------------------------------------------------- 1 | .eslintrc.js 2 | lib/** 3 | -------------------------------------------------------------------------------- /binding/nodejs/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/nodejs/.prettierrc -------------------------------------------------------------------------------- /binding/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/nodejs/README.md -------------------------------------------------------------------------------- /binding/nodejs/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/nodejs/copy.js -------------------------------------------------------------------------------- /binding/nodejs/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/nodejs/jest.config.js -------------------------------------------------------------------------------- /binding/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/nodejs/package.json -------------------------------------------------------------------------------- /binding/nodejs/src/cobra.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/nodejs/src/cobra.ts -------------------------------------------------------------------------------- /binding/nodejs/src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/nodejs/src/errors.ts -------------------------------------------------------------------------------- /binding/nodejs/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/nodejs/src/index.ts -------------------------------------------------------------------------------- /binding/nodejs/src/platforms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/nodejs/src/platforms.ts -------------------------------------------------------------------------------- /binding/nodejs/src/pv_status_t.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/nodejs/src/pv_status_t.ts -------------------------------------------------------------------------------- /binding/nodejs/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/nodejs/src/types.ts -------------------------------------------------------------------------------- /binding/nodejs/src/wave_util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/nodejs/src/wave_util.ts -------------------------------------------------------------------------------- /binding/nodejs/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/nodejs/test/index.test.ts -------------------------------------------------------------------------------- /binding/nodejs/test/perf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/nodejs/test/perf.test.ts -------------------------------------------------------------------------------- /binding/nodejs/test/test_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/nodejs/test/test_utils.ts -------------------------------------------------------------------------------- /binding/nodejs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/nodejs/tsconfig.json -------------------------------------------------------------------------------- /binding/nodejs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/nodejs/yarn.lock -------------------------------------------------------------------------------- /binding/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/python/.gitignore -------------------------------------------------------------------------------- /binding/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/python/README.md -------------------------------------------------------------------------------- /binding/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/python/__init__.py -------------------------------------------------------------------------------- /binding/python/_cobra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/python/_cobra.py -------------------------------------------------------------------------------- /binding/python/_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/python/_factory.py -------------------------------------------------------------------------------- /binding/python/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/python/_util.py -------------------------------------------------------------------------------- /binding/python/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /binding/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/python/setup.py -------------------------------------------------------------------------------- /binding/python/test_cobra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/python/test_cobra.py -------------------------------------------------------------------------------- /binding/python/test_cobra_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/python/test_cobra_perf.py -------------------------------------------------------------------------------- /binding/python/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/python/test_util.py -------------------------------------------------------------------------------- /binding/web/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/.babelrc -------------------------------------------------------------------------------- /binding/web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/.eslintrc.js -------------------------------------------------------------------------------- /binding/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/.gitignore -------------------------------------------------------------------------------- /binding/web/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | .DS_Store 4 | test 5 | lib 6 | -------------------------------------------------------------------------------- /binding/web/.prettierignore: -------------------------------------------------------------------------------- 1 | .eslintrc.js 2 | src/wasm/pv_cobra* 3 | -------------------------------------------------------------------------------- /binding/web/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/.prettierrc -------------------------------------------------------------------------------- /binding/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/README.md -------------------------------------------------------------------------------- /binding/web/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/cypress.config.ts -------------------------------------------------------------------------------- /binding/web/cypress/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /binding/web/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/cypress/support/commands.ts -------------------------------------------------------------------------------- /binding/web/cypress/support/component-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/cypress/support/component-index.html -------------------------------------------------------------------------------- /binding/web/cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/cypress/support/index.ts -------------------------------------------------------------------------------- /binding/web/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/cypress/tsconfig.json -------------------------------------------------------------------------------- /binding/web/module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/module.d.ts -------------------------------------------------------------------------------- /binding/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/package.json -------------------------------------------------------------------------------- /binding/web/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/rollup.config.js -------------------------------------------------------------------------------- /binding/web/scripts/copy_wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/scripts/copy_wasm.js -------------------------------------------------------------------------------- /binding/web/scripts/setup_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/scripts/setup_test.js -------------------------------------------------------------------------------- /binding/web/src/cobra.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/src/cobra.ts -------------------------------------------------------------------------------- /binding/web/src/cobra_errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/src/cobra_errors.ts -------------------------------------------------------------------------------- /binding/web/src/cobra_worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/src/cobra_worker.ts -------------------------------------------------------------------------------- /binding/web/src/cobra_worker_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/src/cobra_worker_handler.ts -------------------------------------------------------------------------------- /binding/web/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/src/index.ts -------------------------------------------------------------------------------- /binding/web/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/src/types.ts -------------------------------------------------------------------------------- /binding/web/test/cobra.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/test/cobra.test.ts -------------------------------------------------------------------------------- /binding/web/test/cobra_perf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/test/cobra_perf.test.ts -------------------------------------------------------------------------------- /binding/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/tsconfig.json -------------------------------------------------------------------------------- /binding/web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/binding/web/yarn.lock -------------------------------------------------------------------------------- /demo/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/.gitignore -------------------------------------------------------------------------------- /demo/android/Activity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/.gitignore -------------------------------------------------------------------------------- /demo/android/Activity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/README.md -------------------------------------------------------------------------------- /demo/android/Activity/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/build.gradle -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/build.gradle -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/proguard-rules.pro -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/java/ai/picovoice/cobraactivitydemo/Gauge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/java/ai/picovoice/cobraactivitydemo/Gauge.java -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/java/ai/picovoice/cobraactivitydemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/java/ai/picovoice/cobraactivitydemo/MainActivity.java -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/java/ai/picovoice/cobraactivitydemo/Needle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/java/ai/picovoice/cobraactivitydemo/Needle.java -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/drawable/button_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/drawable/button_background.xml -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/drawable/button_disabled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/drawable/button_disabled.xml -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/drawable/error_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/drawable/error_view.xml -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/layout/cobra_activity_demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/layout/cobra_activity_demo.xml -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /demo/android/Activity/cobra-activity-demo-app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/cobra-activity-demo-app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /demo/android/Activity/copy_test_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/copy_test_resources.sh -------------------------------------------------------------------------------- /demo/android/Activity/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/gradle.properties -------------------------------------------------------------------------------- /demo/android/Activity/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /demo/android/Activity/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /demo/android/Activity/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/gradlew -------------------------------------------------------------------------------- /demo/android/Activity/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/gradlew.bat -------------------------------------------------------------------------------- /demo/android/Activity/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/Activity/settings.gradle -------------------------------------------------------------------------------- /demo/android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/android/README.md -------------------------------------------------------------------------------- /demo/c/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/c/.gitignore -------------------------------------------------------------------------------- /demo/c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/c/CMakeLists.txt -------------------------------------------------------------------------------- /demo/c/Preload.CMake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/c/Preload.CMake -------------------------------------------------------------------------------- /demo/c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/c/README.md -------------------------------------------------------------------------------- /demo/c/cobra_demo_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/c/cobra_demo_file.c -------------------------------------------------------------------------------- /demo/c/cobra_demo_mic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/c/cobra_demo_mic.c -------------------------------------------------------------------------------- /demo/c/test/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/c/test/test_cobra_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/c/test/test_cobra_c.py -------------------------------------------------------------------------------- /demo/c/test/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/c/test/test_util.py -------------------------------------------------------------------------------- /demo/dotnet/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/dotnet/.editorconfig -------------------------------------------------------------------------------- /demo/dotnet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/dotnet/.gitignore -------------------------------------------------------------------------------- /demo/dotnet/CobraDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/dotnet/CobraDemo.sln -------------------------------------------------------------------------------- /demo/dotnet/CobraDemo/CobraDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/dotnet/CobraDemo/CobraDemo.csproj -------------------------------------------------------------------------------- /demo/dotnet/CobraDemo/FileDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/dotnet/CobraDemo/FileDemo.cs -------------------------------------------------------------------------------- /demo/dotnet/CobraDemo/MicDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/dotnet/CobraDemo/MicDemo.cs -------------------------------------------------------------------------------- /demo/dotnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/dotnet/README.md -------------------------------------------------------------------------------- /demo/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/.gitignore -------------------------------------------------------------------------------- /demo/ios/CobraDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/.gitignore -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo.xcodeproj/xcshareddata/xcschemes/CobraDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo.xcodeproj/xcshareddata/xcschemes/CobraDemo.xcscheme -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-1024.png -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-20.png -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-20@2x.png -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-20@3x.png -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-29.png -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-29@2x.png -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-29@3x.png -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-40.png -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-40@2x.png -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-40@3x.png -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-60@2x.png -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-60@3x.png -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-76.png -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-76@2x.png -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo/Assets.xcassets/AppIcon.appiconset/pv_circle_512-83.5@2x.png -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo/CobraDemoApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo/CobraDemoApp.swift -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo/ContentView.swift -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo/Info.plist -------------------------------------------------------------------------------- /demo/ios/CobraDemo/CobraDemo/ViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/CobraDemo/CobraDemo/ViewModel.swift -------------------------------------------------------------------------------- /demo/ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/ios/README.md -------------------------------------------------------------------------------- /demo/nodejs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | resources 4 | package-lock.json 5 | -------------------------------------------------------------------------------- /demo/nodejs/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /demo/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/nodejs/README.md -------------------------------------------------------------------------------- /demo/nodejs/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/nodejs/file.js -------------------------------------------------------------------------------- /demo/nodejs/mic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/nodejs/mic.js -------------------------------------------------------------------------------- /demo/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/nodejs/package.json -------------------------------------------------------------------------------- /demo/nodejs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/nodejs/yarn.lock -------------------------------------------------------------------------------- /demo/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/python/.gitignore -------------------------------------------------------------------------------- /demo/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/python/README.md -------------------------------------------------------------------------------- /demo/python/cobra_demo_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/python/cobra_demo_file.py -------------------------------------------------------------------------------- /demo/python/cobra_demo_mic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/python/cobra_demo_mic.py -------------------------------------------------------------------------------- /demo/python/requirements.txt: -------------------------------------------------------------------------------- 1 | pvcobra==2.1.0 2 | pvrecorder==1.2.4 3 | -------------------------------------------------------------------------------- /demo/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/python/setup.py -------------------------------------------------------------------------------- /demo/web/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .rts2_cache/ 3 | .idea/ 4 | dist/ 5 | *.log 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /demo/web/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | .DS_Store -------------------------------------------------------------------------------- /demo/web/.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore artifacts: 2 | build 3 | coverage 4 | -------------------------------------------------------------------------------- /demo/web/.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /demo/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/web/README.md -------------------------------------------------------------------------------- /demo/web/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/web/eslint.config.mjs -------------------------------------------------------------------------------- /demo/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/web/index.html -------------------------------------------------------------------------------- /demo/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/web/package.json -------------------------------------------------------------------------------- /demo/web/scripts/cobra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/web/scripts/cobra.js -------------------------------------------------------------------------------- /demo/web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/demo/web/yarn.lock -------------------------------------------------------------------------------- /include/picovoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/include/picovoice.h -------------------------------------------------------------------------------- /include/pv_cobra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/include/pv_cobra.h -------------------------------------------------------------------------------- /lib/android/arm64-v8a/libpv_cobra.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/android/arm64-v8a/libpv_cobra.so -------------------------------------------------------------------------------- /lib/android/armeabi-v7a/libpv_cobra.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/android/armeabi-v7a/libpv_cobra.so -------------------------------------------------------------------------------- /lib/android/x86/libpv_cobra.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/android/x86/libpv_cobra.so -------------------------------------------------------------------------------- /lib/android/x86_64/libpv_cobra.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/android/x86_64/libpv_cobra.so -------------------------------------------------------------------------------- /lib/ios/PvCobra.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/ios/PvCobra.xcframework/Info.plist -------------------------------------------------------------------------------- /lib/ios/PvCobra.xcframework/ios-arm64/PvCobra.framework/Headers/PvCobra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/ios/PvCobra.xcframework/ios-arm64/PvCobra.framework/Headers/PvCobra.h -------------------------------------------------------------------------------- /lib/ios/PvCobra.xcframework/ios-arm64/PvCobra.framework/Headers/picovoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/ios/PvCobra.xcframework/ios-arm64/PvCobra.framework/Headers/picovoice.h -------------------------------------------------------------------------------- /lib/ios/PvCobra.xcframework/ios-arm64/PvCobra.framework/Headers/pv_cobra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/ios/PvCobra.xcframework/ios-arm64/PvCobra.framework/Headers/pv_cobra.h -------------------------------------------------------------------------------- /lib/ios/PvCobra.xcframework/ios-arm64/PvCobra.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/ios/PvCobra.xcframework/ios-arm64/PvCobra.framework/Info.plist -------------------------------------------------------------------------------- /lib/ios/PvCobra.xcframework/ios-arm64/PvCobra.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/ios/PvCobra.xcframework/ios-arm64/PvCobra.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /lib/ios/PvCobra.xcframework/ios-arm64/PvCobra.framework/PvCobra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/ios/PvCobra.xcframework/ios-arm64/PvCobra.framework/PvCobra -------------------------------------------------------------------------------- /lib/ios/PvCobra.xcframework/ios-arm64_x86_64-simulator/PvCobra.framework/Headers/PvCobra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/ios/PvCobra.xcframework/ios-arm64_x86_64-simulator/PvCobra.framework/Headers/PvCobra.h -------------------------------------------------------------------------------- /lib/ios/PvCobra.xcframework/ios-arm64_x86_64-simulator/PvCobra.framework/Headers/picovoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/ios/PvCobra.xcframework/ios-arm64_x86_64-simulator/PvCobra.framework/Headers/picovoice.h -------------------------------------------------------------------------------- /lib/ios/PvCobra.xcframework/ios-arm64_x86_64-simulator/PvCobra.framework/Headers/pv_cobra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/ios/PvCobra.xcframework/ios-arm64_x86_64-simulator/PvCobra.framework/Headers/pv_cobra.h -------------------------------------------------------------------------------- /lib/ios/PvCobra.xcframework/ios-arm64_x86_64-simulator/PvCobra.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/ios/PvCobra.xcframework/ios-arm64_x86_64-simulator/PvCobra.framework/Info.plist -------------------------------------------------------------------------------- /lib/ios/PvCobra.xcframework/ios-arm64_x86_64-simulator/PvCobra.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/ios/PvCobra.xcframework/ios-arm64_x86_64-simulator/PvCobra.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /lib/ios/PvCobra.xcframework/ios-arm64_x86_64-simulator/PvCobra.framework/PvCobra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/ios/PvCobra.xcframework/ios-arm64_x86_64-simulator/PvCobra.framework/PvCobra -------------------------------------------------------------------------------- /lib/linux/x86_64/libpv_cobra.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/linux/x86_64/libpv_cobra.so -------------------------------------------------------------------------------- /lib/mac/arm64/libpv_cobra.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/mac/arm64/libpv_cobra.dylib -------------------------------------------------------------------------------- /lib/mac/x86_64/libpv_cobra.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/mac/x86_64/libpv_cobra.dylib -------------------------------------------------------------------------------- /lib/node/linux/x86_64/pv_cobra.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/node/linux/x86_64/pv_cobra.node -------------------------------------------------------------------------------- /lib/node/mac/arm64/pv_cobra.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/node/mac/arm64/pv_cobra.node -------------------------------------------------------------------------------- /lib/node/mac/x86_64/pv_cobra.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/node/mac/x86_64/pv_cobra.node -------------------------------------------------------------------------------- /lib/node/raspberry-pi/cortex-a53-aarch64/pv_cobra.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/node/raspberry-pi/cortex-a53-aarch64/pv_cobra.node -------------------------------------------------------------------------------- /lib/node/raspberry-pi/cortex-a53/pv_cobra.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/node/raspberry-pi/cortex-a53/pv_cobra.node -------------------------------------------------------------------------------- /lib/node/raspberry-pi/cortex-a72-aarch64/pv_cobra.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/node/raspberry-pi/cortex-a72-aarch64/pv_cobra.node -------------------------------------------------------------------------------- /lib/node/raspberry-pi/cortex-a72/pv_cobra.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/node/raspberry-pi/cortex-a72/pv_cobra.node -------------------------------------------------------------------------------- /lib/node/raspberry-pi/cortex-a76-aarch64/pv_cobra.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/node/raspberry-pi/cortex-a76-aarch64/pv_cobra.node -------------------------------------------------------------------------------- /lib/node/raspberry-pi/cortex-a76/pv_cobra.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/node/raspberry-pi/cortex-a76/pv_cobra.node -------------------------------------------------------------------------------- /lib/node/windows/amd64/pv_cobra.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/node/windows/amd64/pv_cobra.node -------------------------------------------------------------------------------- /lib/node/windows/arm64/pv_cobra.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/node/windows/arm64/pv_cobra.node -------------------------------------------------------------------------------- /lib/raspberry-pi/arm11/libpv_cobra.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/raspberry-pi/arm11/libpv_cobra.so -------------------------------------------------------------------------------- /lib/raspberry-pi/cortex-a53-aarch64/libpv_cobra.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/raspberry-pi/cortex-a53-aarch64/libpv_cobra.so -------------------------------------------------------------------------------- /lib/raspberry-pi/cortex-a53/libpv_cobra.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/raspberry-pi/cortex-a53/libpv_cobra.so -------------------------------------------------------------------------------- /lib/raspberry-pi/cortex-a72-aarch64/libpv_cobra.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/raspberry-pi/cortex-a72-aarch64/libpv_cobra.so -------------------------------------------------------------------------------- /lib/raspberry-pi/cortex-a72/libpv_cobra.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/raspberry-pi/cortex-a72/libpv_cobra.so -------------------------------------------------------------------------------- /lib/raspberry-pi/cortex-a76-aarch64/libpv_cobra.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/raspberry-pi/cortex-a76-aarch64/libpv_cobra.so -------------------------------------------------------------------------------- /lib/raspberry-pi/cortex-a76/libpv_cobra.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/raspberry-pi/cortex-a76/libpv_cobra.so -------------------------------------------------------------------------------- /lib/wasm/pv_cobra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/wasm/pv_cobra.js -------------------------------------------------------------------------------- /lib/wasm/pv_cobra.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/wasm/pv_cobra.wasm -------------------------------------------------------------------------------- /lib/wasm/pv_cobra_simd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/wasm/pv_cobra_simd.js -------------------------------------------------------------------------------- /lib/wasm/pv_cobra_simd.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/wasm/pv_cobra_simd.wasm -------------------------------------------------------------------------------- /lib/windows/amd64/libpv_cobra.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/windows/amd64/libpv_cobra.dll -------------------------------------------------------------------------------- /lib/windows/arm64/libpv_cobra.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/lib/windows/arm64/libpv_cobra.dll -------------------------------------------------------------------------------- /res/.lint/c/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/res/.lint/c/formatter.py -------------------------------------------------------------------------------- /res/.lint/java/checkstyle-10.5.0-all.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/res/.lint/java/checkstyle-10.5.0-all.jar -------------------------------------------------------------------------------- /res/.lint/java/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/res/.lint/java/checkstyle.xml -------------------------------------------------------------------------------- /res/.lint/java/suppress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/res/.lint/java/suppress.xml -------------------------------------------------------------------------------- /res/.lint/spell-check/.cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/res/.lint/spell-check/.cspell.json -------------------------------------------------------------------------------- /res/.lint/spell-check/dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/res/.lint/spell-check/dict.txt -------------------------------------------------------------------------------- /res/.lint/swift/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/res/.lint/swift/.swiftlint.yml -------------------------------------------------------------------------------- /res/audio/sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/res/audio/sample.wav -------------------------------------------------------------------------------- /res/scripts/machine-state.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/res/scripts/machine-state.sh -------------------------------------------------------------------------------- /script/automation/browserstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Picovoice/cobra/HEAD/script/automation/browserstack.py --------------------------------------------------------------------------------