Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions bindings/ruby/extsources.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
twitch.sh
yt-wsp.sh
close-issue.yml
build-xcframework.sh
]

EXTSOURCES =
Expand Down
3 changes: 2 additions & 1 deletion bindings/ruby/lib/whisper/model/uri.rb
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ def download(response)
end

def show_progress(current, size)
progress_rate_available = size && $stderr.tty? && $stderr.winsize[1] >= line.size
line_size = 47
progress_rate_available = size && $stderr.tty? && $stderr.winsize[1] >= line_size

unless @prev
@prev = Time.now
Expand Down
1 change: 0 additions & 1 deletion bindings/ruby/test/test_segment.rb
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ def test_on_new_segment_twice
end

def test_transcription_after_segment_retrieved
params = Whisper::Params.new
segment = whisper.each_segment.first
assert_match(/ask not what your country can do for you, ask what you can do for your country/, segment.text)

Expand Down
2 changes: 1 addition & 1 deletion bindings/ruby/whispercpp.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ require_relative "extsources"
Gem::Specification.new do |s|
s.name = "whispercpp"
s.authors = ["Georgi Gerganov", "Todd A. Fisher"]
s.version = '1.3.4'
s.version = '1.3.5'
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']
Expand Down
Loading