Skip to content

Releases: mybigday/whisper.rn

Release 0.3.0-rc.4

13 Jun 07:07
Compare
Choose a tag to compare
Release 0.3.0-rc.4 Pre-release
Pre-release

0.3.0-rc.4 (2023-06-13)

This pre-release introduces Core ML support for iOS, please read Core ML support in README for more details.

Bug Fixes

  • transcribeEnd event not only trig on final transcription (#59) (d9092b1)

Release 0.3.0-rc.3

30 May 01:39
Compare
Choose a tag to compare
Release 0.3.0-rc.3 Pre-release
Pre-release

0.3.0-rc.3 (2023-05-30)

This pre-release introduces Core ML support for iOS, please read Core ML support in README for more details.

Features

  • add whisper.cpp version as libVersion export (e16f2a4)
  • bump whisper.cpp to latest commit (ebfff20)

Release 0.3.0-rc.2

14 May 23:36
Compare
Choose a tag to compare
Release 0.3.0-rc.2 Pre-release
Pre-release

0.3.0-rc.2 (2023-05-14)

This pre-release introduces Core ML support for iOS, please read Core ML support in README for more details.

Features

  • bump whisper.cpp to v1.4.2 (beta) (#44) (d82d2a1)

Release 0.3.0-rc.0

13 May 05:27
Compare
Choose a tag to compare
Release 0.3.0-rc.0 Pre-release
Pre-release

0.3.0-rc.0 (2023-05-13)

This pre-release introduces Core ML support for iOS, please read Core ML support in README for more details.

Bug Fixes

  • android: move reset call to fullTranscribeSamples (14f0f0b)

Features

  • bump whisper.cpp to latest commit (after 1.4.1 beta) (#40) (8c78af5)
  • bump whisper.cpp to v1.3.0 beta (c6e6bdc)
  • example: update Podfile.lock (771b0d0)
  • ios: support Core ML (#41) (736f9e0)
  • support load model in bundle assets (7a14148)
  • use initial_prompt param instead of rn_whisper_convert_prompt (bc1f43f)

Release 0.2.5

04 Apr 01:42
Compare
Choose a tag to compare

0.2.5 (2023-04-04)

Features

  • ios: add tvos platform (ae425ca)
  • use 2 threads by default on 4-core devices (2c91f68)

Release 0.2.4

01 Apr 02:38
Compare
Choose a tag to compare

0.2.4 (2023-04-01)

Bug Fixes

  • ts: avoid repeated calls of subscription.remove() (fac4a07)

Release 0.2.3

31 Mar 02:01
Compare
Choose a tag to compare

0.2.3 (2023-03-31)

Bug Fixes

  • ios: missing reset of isStoppedByAction on stop (fc328ff)

Release 0.2.2

30 Mar 05:31
Compare
Choose a tag to compare

0.2.2 (2023-03-30)

Features

  • implement audio samples slicing for realtime transcription (#11) (83530ac)

Release 0.2.1

29 Mar 02:06
Compare
Choose a tag to compare

0.2.1 (2023-03-29)

Bug Fixes

  • android: use hardware_concurrency for get max_threads (d05fb9c), closes #14
  • example: correct disabled prop (df378b2)
  • finish the transcription of last audio samples (#15) (f119148)
  • mock: send end event (22fd9cd)

Release 0.2.0

27 Mar 03:10
Compare
Choose a tag to compare

0.2.0 (2023-03-27)

This version contains breaking change, you will need to migrate the transcribe usage after upgrading to v0.2:

v0.1.x:

const { result } = await whisperContext.transcribe(sampleFilePath, options)

To (v0.2):

const { stop, promise } = whisperContext.transcribe(sampleFilePath, options)
const { result } = await promise

Features

  • Implement abort method for transcribe (#7) (7d39694)
  • implement transcribe realtime method (#10) (f63c49f)