elevenlabs-m2k
TypeScript icon, indicating that this package has built-in type declarations

1.0.7 • Public • Published

Elevenlabs Nodejs

The Nodes JS API for ElevenLabs text-to-speech. Unleash the power of our cutting-edge technology to generate realistic, captivating speech in a wide range of languages.

Getting Started

Get your ElevenLabs API key from here.

const apiKey = process.env.API_KEY;
const { ElevenlabsAPI } = require('elevenlabs-m2k');
const elevenlabs = new ElevenlabsAPI(apiKey);

Get Voices

elevenlabs.getVoices().then(async (voices) => {
    const { voice_id, name } = voices[0];
    console.log(name, 'is speaking', `(${voice_id})`);
});

Get Sample Voice Audio URL

elevenlabs.getSample(voice_id).then(url => console.log(url));

Get Models

elevenlabs.getModels().then(async (data) => {
    const { model_id, name } = data.models[0];
    console.log(name, '=', `(${model_id})`);
});

Get Audio

const audio = await elevenlabs.getAudio("Hello World", voice_id); // Get array buffer

Package Sidebar

Install

npm i elevenlabs-m2k

Weekly Downloads

6

Version

1.0.7

License

MIT

Unpacked Size

25.4 kB

Total Files

6

Last publish

Collaborators

  • m2kdevelopments