Add Go API for audio tagging (#1840)

This commit is contained in:
Fangjun Kuang
2025-02-11 12:07:28 +08:00
committed by GitHub
parent 73d7c25233
commit f5bf8c8d4a
11 changed files with 180 additions and 2 deletions

View File

@@ -26,6 +26,8 @@ jobs:
include:
- os: ubuntu-latest
arch: amd64
- os: ubuntu-22.04-arm
arch: arm64
- os: macos-13
arch: amd64
- os: macos-14
@@ -460,6 +462,19 @@ jobs:
./run-tdnn-yesno.sh
rm -rf sherpa-onnx-tdnn-yesno
- name: Test audio tagging (Linux/macOS)
if: matrix.os != 'windows-latest'
shell: bash
run: |
cd go-api-examples/audio-tagging
ls -lh
go mod tidy
cat go.mod
go build
ls -lh
./run.sh
- name: Test streaming decoding files (Linux/macOS)
if: matrix.os != 'windows-latest'
shell: bash