mirror of
https://github.com/ggml-org/whisper.cpp.git
synced 2026-08-01 15:40:49 -05:00
* Bump version * Add test for VAD segments API * Implement VAD segments API * Add signatures of VAD segments API * Stop to dependent on mutex_m * Check segment range for vad_segment_t0/t1 * Remove needless check * Remove dead codes * Fix index check for VAD segments * Remove needless line * Use NUM2DBL instead of RFLOAT_VALUE for safety * Fix document * Check type of samples * Arrange CMake cache notation for older version * Remove unnecessary line break * Check return value of whisper_vad_segments_from_samples * Fix type of VAD::Segment#start_time and #end_time * Prevent dangling pointer from Params to VAD::Params * Fix typos * Update README * Make test follow fix of impl * Use segments_from_samples_body in ruby_whisper_vad_detect * Run segments_from_samples without GVL * Remove unnecessary codes * [skip ci]Remove trailing whitespace Co-authored-by: Daniel Bevenius <daniel.bevenius@gmail.com> --------- Co-authored-by: Daniel Bevenius <daniel.bevenius@gmail.com>
51 lines
1.2 KiB
C++
51 lines
1.2 KiB
C++
#include "ruby_whisper.h"
|
|
#include "common-whisper.h"
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern ID id_to_path;
|
|
|
|
extern VALUE cVADSegments;
|
|
|
|
extern const rb_data_type_t ruby_whisper_vad_context_type;
|
|
extern const rb_data_type_t ruby_whisper_vad_params_type;
|
|
extern const rb_data_type_t ruby_whisper_vad_segments_type;
|
|
|
|
extern VALUE ruby_whisper_vad_segments_s_init(struct whisper_vad_segments *segments);
|
|
extern VALUE segments_from_samples_body(VALUE rb_args);
|
|
|
|
VALUE
|
|
ruby_whisper_vad_detect(VALUE self, VALUE file_path, VALUE params) {
|
|
ruby_whisper_vad_context *rwvc;
|
|
std::string cpp_file_path;
|
|
std::vector<float> pcmf32;
|
|
std::vector<std::vector<float>> pcmf32s;
|
|
|
|
GetVADContext(self, rwvc);
|
|
|
|
if (rb_respond_to(file_path, id_to_path)) {
|
|
file_path = rb_funcall(file_path, id_to_path, 0);
|
|
}
|
|
cpp_file_path = StringValueCStr(file_path);
|
|
|
|
if (!read_audio_data(cpp_file_path, pcmf32, pcmf32s, false)) {
|
|
rb_raise(rb_eRuntimeError, "Failed to open '%s' as WAV file\n", cpp_file_path.c_str());
|
|
}
|
|
|
|
segments_from_samples_args args = {
|
|
&self,
|
|
¶ms,
|
|
pcmf32.data(),
|
|
(int)pcmf32.size(),
|
|
};
|
|
return segments_from_samples_body((VALUE)&args);
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|