add_executable(decode-file-c-api decode-file-c-api.c) target_link_libraries(decode-file-c-api sherpa-onnx-c-api) target_link_libraries(decode-file-c-api sherpa-onnx-c-api cargs) 104 changes: 81 additions & 23 deletions 104 c-api-examples/decode-file-c-api.c Original file line num...
export EXE=sherpa-onnx .github/scripts/test-online-transducer.sh - name: Test online transducer (C API) shell: bash run: | export PATH=$PWD/build/bin:$PATH export EXE=decode-file-c-api .github/scripts/test-online-transducer.sh8 changes: 8 additions & 0 deletions 8 .github/workflow...
Actions: k2-fsa/sherpa-onnxActions All workflows c-api .github/workflows/export-revai-segmentation-to-onnx.yaml aarch64-linux-gnu-shared aarch64-linux-gnu-static add-new-asr-models android android-static apk-asr apk-asr-2pass apk-audio-tagging apk-audio-tagging-wearos ...
c-api-examples/asr-microphone-example/c-api-alsa.cc Original file line numberDiff line numberDiff line change @@ -19,59 +19,62 @@ #include "sherpa-onnx/c-api/c-api.h" static struct cag_option options[] = { {.identifier = 'h', .access_letters = "h", .access_name = "help"...
otool -l build/bin/sherpa-onnx - name: Test Audio tagging - name: Test C API shell: bash run: | export PATH=$PWD/build/bin:$PATH export EXE=sherpa-onnx-offline-audio-tagging export SLID_EXE=spoken-language-identification-c-api export SID_EXE=speaker-identification-c-api export AT_EXE...
rm -rf *.onnx rm *.wav - name: Test vad + Moonshine shell: bash run: | gcc -o vad-moonshine-c-api ./c-api-examples/vad-moonshine-c-api.c \ -I ./build/install/include \ -L ./build/install/lib/ \ -l sherpa-onnx-c-api \ -l onnxruntime # Now download models # curl ...
│ ├── sherpa-onnx-vad-microphone │ └── sherpa-onnx-vad-microphone-offline-asr ├── include │ ├── cargs.h │ └── sherpa-onnx │ └── c-api │ └── c-api.h ├── lib │ ├── cargs.h │ ├── libcargs.dylib │ ├── libkaldi-native-fbank-core.dy...
otool -L ./install/lib/libsherpa-onnx-c-api.dylib fi - name: Test ffmpeg if: matrix.os == 'macos-latest' shell: bash run: | brew install ffmpeg cd ffmpeg-examples curl -SL -O https://github.com/k2-fsa/sherpa-onnx/releases/download/asr-models/sherpa-onnx-streaming-zipformer-biling...
target_link_libraries(offline-tts-c-api sherpa-onnx-c-api cargs) endif() if(SHERPA_ONNX_ENABLE_SPEAKER_DIARIZATION) add_executable(offline-speaker-diarization-c-api offline-speaker-diarization-c-api.c) target_link_libraries(offline-speaker-diarization-c-api sherpa-onnx-c-api) endif() add_ex...
So that there are no symbol conflicts when using sherpa-onnx in another project. csukuangfj added 3 commits July 26, 2024 16:01 Rename CreateOnlineRecognizer ead1181 Refactor C API to prefix each API with SherpaOnnx. 58f32e0 Release v1.10.19 141e4b5 csukuangfj force-pushed the ...