Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wget 续传 #801

Merged
merged 2 commits into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build-apk-vad.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ log "https://github.com/snakers4/silero-vad/raw/master/files/silero_vad.onnx"

# Download the model
pushd ./android/SherpaOnnxVad/app/src/main/assets/
wget https://github.com/snakers4/silero-vad/raw/master/files/silero_vad.onnx
wget -c https://github.com/snakers4/silero-vad/raw/master/files/silero_vad.onnx
popd

for arch in arm64-v8a armeabi-v7a x86_64 x86; do
Expand Down
2 changes: 1 addition & 1 deletion build-ios-no-tts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ onnxruntime_dir=ios-onnxruntime/$onnxruntime_version
if [ ! -f $onnxruntime_dir/onnxruntime.xcframework/ios-arm64/onnxruntime.a ]; then
mkdir -p $onnxruntime_dir
pushd $onnxruntime_dir
wget https://github.com/csukuangfj/onnxruntime-libs/releases/download/v${onnxruntime_version}/onnxruntime.xcframework-${onnxruntime_version}.tar.bz2
wget -c https://github.com/csukuangfj/onnxruntime-libs/releases/download/v${onnxruntime_version}/onnxruntime.xcframework-${onnxruntime_version}.tar.bz2
tar xvf onnxruntime.xcframework-${onnxruntime_version}.tar.bz2
rm onnxruntime.xcframework-${onnxruntime_version}.tar.bz2
cd ..
Expand Down
2 changes: 1 addition & 1 deletion build-kws-apk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ if [ ! -d ./android/SherpaOnnxKws/app/src/main/assets/$repo ]; then
log "Start testing ${repo_url}"

log "Download pretrained model and test-data from $repo_url"
wget -qq $repo_url
wget -c -qq $repo_url
tar jxvf ${repo}.tar.bz

pushd $repo
Expand Down