🔊 Kokoro Web: Free AI text-to-speech, online or self-hosted, OpenAI compatible! https://voice-generator.pages.dev
Find a file
2025-03-16 05:07:36 +00:00
.devcontainer Run fmt 2025-02-10 03:28:56 +00:00
.github/workflows Update Docker image references to use GitHub Container Registry 2025-02-27 14:50:42 +00:00
docker Add ffmpeg to Dockerfile for enhanced media processing capabilities 2025-02-16 00:56:25 +00:00
scripts Add JWT bearer authentication support to OpenAPI specification 2025-02-23 18:59:37 +00:00
src Update version to v0.1.3 in version.ts and improve error handling in speech generation 2025-03-16 05:07:36 +00:00
static Add demo GIF to showcase application features 2025-02-28 15:44:13 +00:00
.env.example Refactor environment variables for tracking and authentication 2025-02-26 01:54:03 +00:00
.gitignore Update .gitignore to include temporary files and directories 2025-02-10 01:07:13 +00:00
.npmrc Initialize SvelteKit project with basic configuration and structure 2025-02-09 23:10:40 +00:00
.prettierrc Add Tailwind CSS and DaisyUI integration with Prettier configuration updates 2025-02-11 00:00:18 +00:00
LICENSE Update LICENSE file permissions 2025-02-09 23:08:21 +00:00
package-lock.json Add wrangler dependency to package.json 2025-02-27 03:46:26 +00:00
package.json Add wrangler dependency to package.json 2025-02-27 03:46:26 +00:00
README.md Add ranking information for Kokoro model in README.md 2025-02-28 16:47:27 +00:00
svelte.config.js Add support for static site generation with new build scripts and adapter configuration 2025-02-27 01:20:28 +00:00
tsconfig.json Initialize SvelteKit project with basic configuration and structure 2025-02-09 23:10:40 +00:00
vite.config.ts Update Vite configuration to exclude FFmpeg dependencies from optimization 2025-02-16 02:07:10 +00:00

Kokoro Web Logo

🔊 Kokoro Web - Free AI Text to Speech

A powerful, browser-based AI voice generator that lets you create natural-sounding voices without installing anything.

Use it directly in your browser or self-host it for your own applications with OpenAI API compatibility!

🎬 Demo

Kokoro Web Demo

Try it now: https://voice-generator.pages.dev

Key Features

  • Zero Installation - Works directly in your browser, no downloads needed
  • Self Hostable - If you need an OpenAI Compatible API
  • Free & Open Source - 100% free for personal and commercial use
  • Multiple Languages - Support for various language accents
  • Voice Customization - Simple and advanced voice configuration options
  • WebGPU Acceleration - Utilize your GPU for faster generation in supported browsers

🧠 Model

Kokoro Web is powered by hexgrad/Kokoro-82M, an open-weight 82 million parameter Text-to-Speech model available on Hugging Face.

Despite its lightweight architecture, it delivers comparable quality to larger models while being significantly faster and more cost-efficient. With Apache-licensed weights, Kokoro can be deployed anywhere from production environments to personal projects.

This is one of the top-ranked models in TTS Arena, just behind ElevenLabs.

Special thanks to the model creators for making this technology accessible.

🚀 Usage

Option 1: Use it online

Visit the hosted version at voice-generator.pages.dev and start generating voices instantly!

Option 2: Self-host with Docker

The self-hosted version includes an OpenAI-compatible API that works as a drop-in replacement for applications using OpenAI's text-to-speech API.

services:
  kokoro-web:
    image: ghcr.io/eduardolat/kokoro-web:latest
    ports:
      - "3000:3000"
    environment:
      - KW_SECRET_API_KEY=your-api-key
    volumes:
      - ./kokoro-cache:/kokoro/cache  # Cache downloaded models and voices
    restart: unless-stopped

You can adjust the compose.yaml according to your needs or use docker run directly.

Then access the web UI at http://localhost:3000 and the API at http://localhost:3000/api/v1/index.html

⚙️ Environment variables

  • KW_SECRET_API_KEY - Your API key for authentication. If left blank, authentication will not be activated

  • KW_PUBLIC_NO_TRACK - Opt out of anonymous usage analytics

🔌 API Integration

Kokoro Web provides an OpenAI-compatible API that works as a drop-in replacement for applications using OpenAI's text-to-speech service:

import fs from "fs";
import path from "path";
import OpenAI from "openai";

const openai = new OpenAI({
  baseURL: 'http://your-kokoro-host/api/v1',
  apiKey: 'your-kokoro-api-key',
});
const speechFile = path.resolve("./speech.mp3");

const mp3 = await openai.audio.speech.create({
  model: "model_q8f16",
  voice: "af_heart",
  input: "Today is a wonderful day to build something people love!",
});

const buffer = Buffer.from(await mp3.arrayBuffer());
await fs.promises.writeFile(speechFile, buffer);

📜 License

Kokoro Web is MIT Licensed


Made with ❤️ by Eduardo Lat