File size: 665 Bytes
165d1b6
 
f4777a6
 
 
 
 
 
850c5ff
 
 
 
f4777a6
165d1b6
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env bash

# install onnxruntime
wget https://github.com/microsoft/onnxruntime/releases/download/v1.20.1/onnxruntime-linux-x64-1.20.1.tgz
tar -zxvf onnxruntime-linux-x64-1.20.1.tgz
export C_INCLUDE_PATH=$C_INCLUDE_PATH:$(pwd)/onnxruntime-linux-x64-1.20.1/include
export LIBRARY_PATH=$LIBRARY_PATH:$(pwd)/onnxruntime-linux-x64-1.20.1/lib

# download model
# https://github.com/snakers4/silero-vad/tree/master/src/silero_vad/data
wget https://github.com/snakers4/silero-vad/raw/refs/heads/master/src/silero_vad/data/silero_vad.onnx

# build
mkdir build

go env -w GO111MODULE=on
go env GO111MODULE

go mod init silero

go mod tidy

go build -o build silero