Add VAD examples using ALSA for recording (#739)

This commit is contained in:
Fangjun Kuang
2024-04-08 16:41:01 +08:00
committed by GitHub
parent a5f8fbc83f
commit 6fb8ceda57
17 changed files with 601 additions and 9 deletions

View File

@@ -0,0 +1,27 @@
// sherpa-onnx/python/csrc/wave-writer.cc
//
// Copyright (c) 2024 Xiaomi Corporation
#include "sherpa-onnx/python/csrc/wave-writer.h"
#include <string>
#include <vector>
#include "sherpa-onnx/csrc/wave-writer.h"
namespace sherpa_onnx {
void PybindWaveWriter(py::module *m) {
m->def(
"write_wave",
[](const std::string &filename, const std::vector<float> &samples,
int32_t sample_rate) -> bool {
bool ok =
WriteWave(filename, sample_rate, samples.data(), samples.size());
return ok;
},
py::arg("filename"), py::arg("samples"), py::arg("sample_rate"));
}
} // namespace sherpa_onnx