This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
Releases: FelixWaweru/elevenlabs-node
Releases · FelixWaweru/elevenlabs-node
[email protected]
Releases
Description
- Fixed Model ID description in documentation
⛰ Major Changes
- Updated Readme to fix Model ID naming
[email protected]
Releases
Description
- NPM description fix
⛰ Major Changes
- Updated Readme to fix broken assets in package description
[email protected]
Releases
Description
- Added signed builds
⛰ Major Changes
- Added NPM provenance to automated build
[email protected]
Releases
Description
- ElevenLabs_Node V2 available!
✨ New Features
- Set up the API Key and Voice ID when importing the package
- Added Speaker Boost to TTS
- Added Style Exaggeration to TTS.
- Improved
textToSpeechStream
to handle multiple response types i.e ArrayBuffer, Json or Stream - Improved Documentation to include code snippets and variable types
⛰ Major Changes
- API Key and Voice ID are setup when importing the package
textToSpeech
andtextToSpeechStream
functions no longer require you to pass the API Key on declaration- You can optionally pass the Voice ID to the
textToSpeech
andtextToSpeechStream
functions if you wish to use different IDs from the default - All Functions that require variables use an object i.e
// V2
textToSpeech({
fileName: "audio.mp3",
textInput: "mozzy is cool",
voiceId: "21m00Tcm4TlvDq8ikWAM",
stability: 0.5,
similarityBoost: 0.5,
modelId: "elevenlabs_multilingual_v2",
style: 1,
speakerBoost: true
});
// Or
textToSpeech({
"audio.mp3",
"mozzy is cool",
"21m00Tcm4TlvDq8ikWAM",
0.5,
0.5,
"elevenlabs_multilingual_v2",
1,
true
});
// V1
textToSpeech(
"audio.mp3",
"mozzy is cool",
"21m00Tcm4TlvDq8ikWAM",
0.5,
0.5,
"elevenlabs_multilingual_v2",
1,
true
);
[email protected]
Releases
Description
- Additional ElevenLabs API features now available!
Changes
- Added Get Models (#29 )
- Added Get User
- Added Get User Subscription
- Added customizable response type to
textToSpeechStream
- Fixed
textToSpeech
wait for audio (#16 )
[email protected]
Releases
Description
- Updated dependency
Changes
- Updated the dependency from fs to fs-extra
[email protected]
[email protected]
[email protected]
Releases
Description
- ElevenLabs Mutlilingual speech now available!
Changes
- added in model_id as a passed parameter(#13 )