This repository has been archived on 2025-08-26. You can view files and clone it, but cannot push or open issues or pull requests.
Files
enginex_bi_series-sherpa-onnx/dart-api-examples/non-streaming-asr/run-whisper.sh
2024-06-14 18:40:16 +08:00

20 lines
616 B
Bash
Executable File

#!/usr/bin/env bash
set -ex
dart pub get
if [ ! -f ./sherpa-onnx-whisper-tiny.en/tiny.en-tokens.txt ]; then
curl -SL -O https://github.com/k2-fsa/sherpa-onnx/releases/download/asr-models/sherpa-onnx-whisper-tiny.en.tar.bz2
tar xvf sherpa-onnx-whisper-tiny.en.tar.bz2
rm sherpa-onnx-whisper-tiny.en.tar.bz2
fi
dart run \
./bin/whisper.dart \
--encoder ./sherpa-onnx-whisper-tiny.en/tiny.en-encoder.int8.onnx \
--decoder ./sherpa-onnx-whisper-tiny.en/tiny.en-decoder.int8.onnx \
--tokens ./sherpa-onnx-whisper-tiny.en/tiny.en-tokens.txt \
--input-wav ./sherpa-onnx-whisper-tiny.en/test_wavs/0.wav