com.rest.elevenlabs

A non-official Eleven Labs voice synthesis client for Unity (UPM)

MIT License

Stars
76
Committers
2

Bot releases are hidden (Show)

com.rest.elevenlabs - com.rest.elevenlabs 2.0.8

Published by StephenHodgson about 1 year ago

What's Changed

  • Added CreateVoiceRequest.Description

Full Changelog: https://github.com/RageAgainstThePixel/com.rest.elevenlabs/compare/2.0.7...2.0.8

com.rest.elevenlabs - com.rest.elevenlabs 2.0.7

Published by StephenHodgson about 1 year ago

What's Changed

  • Added Voice.HighQualityBaseModelIds
  • Bumped deps

New Contributors

  • @PeterJarrettUK

Full Changelog: https://github.com/RageAgainstThePixel/com.rest.elevenlabs/compare/2.0.6...2.0.7

com.rest.elevenlabs - com.rest.elevenlabs 2.0.6

Published by StephenHodgson about 1 year ago

What's Changed

  • bump deps
  • updated editor to 2022.3.7f1 LTS

Full Changelog: https://github.com/RageAgainstThePixel/com.rest.elevenlabs/compare/2.0.5...2.0.6

com.rest.elevenlabs - com.rest.elevenlabs 2.0.5

Published by StephenHodgson over 1 year ago

What's Changed

  • updated voice settings
    • added speaker boost and style options

Full Changelog: https://github.com/RageAgainstThePixel/com.rest.elevenlabs/compare/2.0.4...2.0.5

com.rest.elevenlabs - com.rest.elevenlabs 2.0.4

Published by StephenHodgson over 1 year ago

What's Changed

  • fixed a bug when resetting voice options to default

Full Changelog: https://github.com/RageAgainstThePixel/com.rest.elevenlabs/compare/2.0.3...2.0.4

com.rest.elevenlabs - com.rest.elevenlabs 2.0.3

Published by StephenHodgson over 1 year ago

com.rest.elevenlabs - com.rest.elevenlabs 2.0.2

Published by StephenHodgson over 1 year ago

What's Changed

  • added a way to specify global voice setting in ElevenLabsConfiguration

Full Changelog: https://github.com/RageAgainstThePixel/com.rest.elevenlabs/compare/2.0.1...2.0.2

com.rest.elevenlabs - com.rest.elevenlabs 2.0.1

Published by StephenHodgson over 1 year ago

What's Changed

  • Updated docs
  • Updated deps

Full Changelog: https://github.com/RageAgainstThePixel/com.rest.elevenlabs/compare/2.0.0...2.0.1

com.rest.elevenlabs - com.rest.elevenlabs 2.0.0

Published by StephenHodgson over 1 year ago

What's Changed

⚠️ Breaking Changes ⚠️

  • Enabled support for WebGL
    • removed httpClient for generic UnityWebRequest
  • refactored authentication classes with new rest package patterns
  • added optimize_streaming_latency parameter to text to speech calls

Migration Guide

  • Some assembly definitions may now also need to reference Utilities.Async and Utilities.Rest
  • ElevenLabsAuthentication static methods are no longer static, and will need to be called using Default property accessor
    • ElevenLabsAuthentication.LoadFromEnv() -> ElevenLabsAuthentication.Default.LoadFromEnvironment()
  • ElevenLabsConfigurationSettings -> ElevenLabsConfiguration
  • ElevenLabsClientSettings -> ElevenLabsSettings

Full Changelog: https://github.com/RageAgainstThePixel/com.rest.elevenlabs/compare/1.3.4...2.0.0

com.rest.elevenlabs - com.rest.elevenlabs 1.3.4

Published by StephenHodgson over 1 year ago

What's Changed

  • Added Preserve attribute to every serialized type
  • Added text to speech demo scene

Full Changelog: https://github.com/RageAgainstThePixel/com.rest.elevenlabs/compare/1.3.3...1.3.4

com.rest.elevenlabs - com.rest.elevenlabs 1.3.3

Published by StephenHodgson over 1 year ago

What's Changed

  • Assign default voice names
  • Get voice details if missing in tts

Full Changelog: https://github.com/RageAgainstThePixel/com.rest.elevenlabs/compare/1.3.2...1.3.3

com.rest.elevenlabs - com.rest.elevenlabs 1.3.2

Published by StephenHodgson over 1 year ago

What's Changed

  • Added voice equality operators
  • Added better parameter checks in VoicesEndPoint

Full Changelog: https://github.com/RageAgainstThePixel/com.rest.elevenlabs/compare/1.3.1...1.3.2

com.rest.elevenlabs - com.rest.elevenlabs 1.3.1

Published by StephenHodgson over 1 year ago

What's Changed

  • Add ability to serialize voice and voice settings in inspector

Full Changelog: https://github.com/RageAgainstThePixel/com.rest.elevenlabs/compare/1.3.0...1.3.1

com.rest.elevenlabs - com.rest.elevenlabs 1.3.0

Published by StephenHodgson over 1 year ago

What's Changed

  • Added ModelsEndpoint
  • Updated TextToSpeech.TextToSpeechAsync with optional Model parameter. Defaults to eleven_monolingual_v1
  • Added default voices
  • Updated editor window with new model option

Full Changelog: https://github.com/RageAgainstThePixel/com.rest.elevenlabs/compare/1.2.1...1.3.0

com.rest.elevenlabs - com.rest.elevenlabs 1.2.1

Published by StephenHodgson over 1 year ago

com.rest.elevenlabs - com.rest.elevenlabs 1.2.0

Published by StephenHodgson over 1 year ago

What's Changed

  • updated dependencies
  • added ability to create voice from Id
  • refactored internal extension classes
  • fixed auth parsing
  • added ability to load configuration file from specific path
  • added optional parameter deleteCachedFile to TextToSpeechEndpoint.TextToSpeechAsync. Default is false.
  • added optional parameter deleteCachedFile to TextToSpeechEndpoint.StreamTextToSpeechAsync. Default is false.

Full Changelog: https://github.com/RageAgainstThePixel/com.rest.elevenlabs/compare/1.1.1...1.2.0

com.rest.elevenlabs - com.rest.elevenlabs 1.1.1

Published by StephenHodgson over 1 year ago

What's Changed

  • fixed some issues with configuration settings inspector

Full Changelog: https://github.com/RageAgainstThePixel/com.rest.elevenlabs/compare/1.1.0...1.1.1

com.rest.elevenlabs - com.rest.elevenlabs 1.1.0

Published by StephenHodgson over 1 year ago

What's Changed

  • An attempt was made to try to Implement TTS streaming. Mostly works, but Unity bug prevents this feature until fixed.
  • Added support for proxy api gateway
  • Updated unit tests
  • Fixed some more bugs in editor dashboard

Full Changelog: https://github.com/RageAgainstThePixel/com.rest.elevenlabs/compare/1.0.1...1.1.0

com.rest.elevenlabs - com.rest.elevenlabs 1.0.1

Published by StephenHodgson over 1 year ago

What's Changed

  • updated dependencies
  • optimized editor dashboard
  • removed exception when sample item path is null or whitespace
  • updated docs with auth info
  • updated unit tests so it doesn't delete useful history

Full Changelog: https://github.com/RageAgainstThePixel/com.rest.elevenlabs/compare/1.0.0...1.0.1

com.rest.elevenlabs - com.rest.elevenlabs 1.0.0

Published by StephenHodgson over 1 year ago

Initial Release! 🎉