Trouble running silero vad with ort/ortex #594
-
Hi, I am trying to run silero-vad using ortex, which uses ort, a rust library to run onnx models. This is probaly a rather unsupported use case, but maybe someone still has some hints on what could be wrong here? I run the silero-vad model with the following input:
When I do this, I get this error:
If I lower the size of the input to [1,350], the error goes away. But starting with 351 input samples, the error re-occurs. Any Idea what this could be? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
My error was, that I encoded the sr (sampling rate) in big-endian, making it completly wrong. When I encode it using little endian, it works! |
Beta Was this translation helpful? Give feedback.
My error was, that I encoded the sr (sampling rate) in big-endian, making it completly wrong. When I encode it using little endian, it works!