Skip to content

Releases: KoljaB/RealtimeTTS

v0.3.44

08 Apr 00:20
Compare
Choose a tag to compare

v0.3.43

21 Mar 19:47
Compare
Choose a tag to compare

New parameters for play and play_async methods:

  • added sentence_fragment_delimiters (A string of characters that are considered sentence delimiters. Default is ".?!;:,\n…)]}。-")
  • force_first_fragment_after_words (int): The number of words after which the first sentence fragment is forced to be yielded. Default is 15 words.

Fixed versions for dependencies. Elevenlabs just upgraded to 1.0.0 which broke stream generation so we temporarily set a fixed version 0.2.27 until RealtimeTTS is adjusted, otherwise this engine would not work anymore.

v0.3.42

21 Feb 18:46
Compare
Choose a tag to compare
  • added CoquiVoice & OpenAIVoice classes to be consistent with all engines
  • routing coquiengine synthesize process output back to main process stdout to see log
  • added comma_silence_duration and sentence_silence_duration parameters to CoquiEngine constructor
  • added set_model(self, checkpoint: str) method to CoquiEngine to allow switching of basic xtts model at runtime

v0.3.40

20 Dec 16:44
Compare
Choose a tag to compare
  • merged #22 & fixed #23 (thank you)
  • change CoquiEngine cloning_reference_wav parameter to "voice"
  • added coqui predefined speaker voices
    Submit name or parts of the name as voice (case-insensitive):
    engine = CoquiEngine(voice="aaron")
    RealtimeTTS will first look for wav or json files, then for the predefined speaker voices

v0.3.35

07 Dec 23:37
Compare
Choose a tag to compare
  • support for multiple speaker cloning reference wave files of coqui engine (submit them as list of filenames as you normally would with a single filename string)
  • default voice now male (female voice here)

v0.3.34

07 Dec 11:07
Compare
Choose a tag to compare
  • bugfix: AIFF system voice synthesis generation under Mac caused Exception
  • bugfix: "muted" parameter together with Elevenlabs caused Exception

v0.3.32

04 Dec 20:44
Compare
Choose a tag to compare
  • play methods got muted parameter
    If True, disables audio playback via local speakers (in case you want to synthesize to file or process audio chunks). Default is False.
  • CoquiEngine got a set_speed method to change at runtime

v0.3.31

02 Dec 13:32
Compare
Choose a tag to compare

v0.3.3

01 Dec 17:08
Compare
Choose a tag to compare

v0.3.2

30 Nov 13:12
32c923e
Compare
Choose a tag to compare
  • fixes a bug causing play_async() to fail after using stop(). Affected all engines.
  • added tqdm to requirements (used to show progressbar while coqui model downloads)