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>
37 lines
1.1 KiB
Ruby
37 lines
1.1 KiB
Ruby
require_relative "extsources"
|
|
|
|
Gem::Specification.new do |s|
|
|
s.name = "whispercpp"
|
|
s.authors = ["Georgi Gerganov", "Todd A. Fisher"]
|
|
s.version = '1.3.8'
|
|
s.description = %q{High-performance inference of OpenAI's Whisper automatic speech recognition (ASR) model via Ruby}
|
|
s.email = 'todd.fisher@gmail.com'
|
|
s.extra_rdoc_files = ['LICENSE', 'README.md']
|
|
|
|
s.files = `git ls-files . -z`.split("\x0") +
|
|
EXTSOURCES.collect {|file|
|
|
basename = File.basename(file)
|
|
if s.extra_rdoc_files.include?(basename)
|
|
basename
|
|
else
|
|
file.sub("../..", "ext/sources")
|
|
.sub("../javascript", "ext/sources/bindings/javascript")
|
|
end
|
|
}
|
|
|
|
s.summary = %q{Ruby whisper.cpp bindings}
|
|
s.test_files = s.files.select {|file| file.start_with? "test/"}
|
|
|
|
s.extensions << 'ext/extconf.rb'
|
|
s.required_ruby_version = '>= 3.3.0'
|
|
|
|
#### Documentation and testing.
|
|
s.homepage = 'https://github.com/ggml-org/whisper.cpp'
|
|
s.rdoc_options = ['--main', 'README.md']
|
|
|
|
|
|
s.platform = Gem::Platform::RUBY
|
|
|
|
s.licenses = ['MIT']
|
|
end
|