| 66 | } |
| 67 | |
| 68 | std::vector<float> read_mono_resampled(const std::filesystem::path & path, int sample_rate) { |
| 69 | return read_wav_f32_as_mono_linear_resampled(path, sample_rate); |
| 70 | } |
| 71 | |
| 72 | [[noreturn]] void throw_unsupported_model(std::string_view task, std::string_view model, std::string_view valid_models) { |
| 73 | throw std::runtime_error( |
no test coverage detected