Text-to-Speech pou Discord
Konpoze bots Discord ki pale nan chanèl vwa ak vwa AI natirèl. Kreye lòd TTS Customized, bots modere ki pèmèt vwa, mesaj akeyi, ak eksperyans interactive pou serveurs ou - powered by 24+ AI modèl vwa ak yon API REST senp.
Tcheke li kounye a
Fonksyon Discord TTS
Tout sa ou bezwen pou ajoute vwa AI sou sèvè Discord ou
Voy nan chanèl
Retounen Discord TTS robotik ak vwa AI reyèl ki patisipe nan chanèl vwa ak pale mesaj yo byen fò ak intonasyon natirèl ak rythme.
Vokal Custom pou chak itilizatè
Asire unike AI vwa pou itilizatè endividyèl oswa wòl. Premium abonnés jwenn eksklizif vwa pandan moderatè yo gen pwòp son diferan yo.
Donasyon & Sub Alerts
Trigger alèt vwa pou donasyon, abònman, ak ranfòse serveurs. Custom mesaj li byen fò nan chanèl vwa ak vwa konfigirasyon pou chak nivo.
Low Latency Response
Kokoro ak Piper bay odyo nan mwens pase 2 segonn, asire ke repons bot yo santi yo imedyat ak natirèl nan konvèsasyon kanal vwa an dirèk.
100+ vwa disponib
Chwazi soti nan plis pase 100 vwa AI nan plis pase 30 lang.Tout manm serveurs ka chwazi vwa yo pi renmen pou yon eksperyans personnalisé.
Entègrasyon API
Simple REST API integre ak discord.js, discord.py, ak nenpòt ki Discord bot framework.Full egzanp kòd ak dokimante bay.
Pi bon modèl vwa pou Discord
Modèl rapid, son natirèl ideyal pou bots Discord an tan reyèl
Kokoro
Free
Lightweight 82M parameter model delivering studio-quality speech with blazing-fast inference.
Pi bon pou: Opsyon ki pi vit ak pi bon kalite pou pale kanal vwa Discord an tan reyèl
Eseye Kokoro
MeloTTS
Free
High-quality multilingual text-to-speech that runs on CPU with minimal latency.
Pi bon pou: Free multilingual model supporting international Discord communities (an anglè)
Eseye MeloTTS
Bark
Standard
Transformer-based text-to-audio model that generates realistic speech, music, and sound effects.
Pi bon pou: Efè son enteresan ak ri pou reponn a bot enteresan
Eseye Bark
Piper
Free
A fast, local neural text to speech system optimized for Raspberry Pi and embedded devices.
Pi bon pou: Modèl ultra-rapid gratis ideyal pou lekti mesaj chat gwo volim
Eseye Piper
Chatterbox
Premium
State-of-the-art zero-shot voice cloning with emotion control from Resemble AI.
Pi bon pou: Klone pèsonalite bot Custom ak kontwòl emosyon pou serveurs immersive
Eseye ChatterboxKi jan yo ajoute AI TTS nan Discord Server ou
Soti nan zewo pou yon bot ki pale nan kèk minit
Jwenn Chèn API ou
Enskri pou yon kont gratis TTS.ai ak jenere yon kle API soti nan tablodbò ou.Tier gratis gen ladan 50 kredi plis accès modèl gratis illimité.
Konfigure Discord Bot ou a
Kreye yon aplikasyon bot Discord, invite li sou sèvè ou, epi enstale discord.js oswa discord.py.Itilizasyon egzanp kòd nou yo pou konekte TTS API.
Konfiguration de sons et commandes
Konfiguré les commandes slash comme /tts, /voice, et /say. Attribuer des voix par défaut par canal, rôle, ou utilisateur. Configurez les limites de fréquence pour empêcher les spams.
Deploye & Go Live
Host bot ou sou yon VPS, Heroku, oswa Railway.Bot ou rantre nan chanèl vwa sou lòd ak pale mesaj ak vwa AI natirèl.
Discord TTS Bot ka itilize
Ki jan kominote Discord itilize TTS.ai
Chat-to-Speech Bot
Kreye yon bot ki li mesaj tèks ak vwa nan yon chanèl vwa. Sèvis manm yo ekri nan yon chanèl tèks, epi bot la pale mesaj yo ak vwa AI unike. Asire diferan vwa pou diferan itilizatè oswa kite manm yo chwazi pwòp vwa yo ak yon lòd tankou !voice kokoro af_sky.
- Li chanèl tèks ak vwa
- Asistans vwa pou chak itilizatè
- Detekte lang otomatikman
- Filtreman obsèvasyon anvan pale
Bonjou & Announcement Bot
Greeting new members with a spoken welcome message when they join a voice channel. Announce events, server updates, or game session starts with custom AI voices. Use different voices for different announcement categories — a friendly voice for welcomes, a deep voice for alerts.
- Voice channel join/leave announcements
- Announcements event scheduled
- Voyi Custom pou chak kalite anons
- Mesaj akeyi multilenguage
Bot Sesyon Jwèt
Yon bot D&D ka pale diferan vwa karaktè pou chak NPC, li deskripsyon atik, oswa rakonte rezilta batay — sa ki fè sesyon tablèt vityèl yo vin pi enteresan.
- Voyeurs de personnages multiples pour RPG NPCs
- Jwenn ak rakonte istwa
- Commentaires de combat et play-by-play
- Klone vwa pou karaktè ki retounen
Tradiksyon
Konbine TTS ak tradiksyon pou yon sèvè Discord multilenguage. Membre pale oswa tape nan lang yo, bot tradwi ak pale rezilta nan lang sib la. Perfektè pou kominote gaming entènasyonal, serveurs aprann lang, ak ekip global.
- Tradiksyon mesaj an tan reyèl + pale
- 30 + lang sipò
- Prononciation natif natal pa lang
- Detekte lang sous la otomatikman
Integrasyon Discord Bot
Ajoute TTS nan bot Discord ou a ak discord.js ak API TTS.ai
const { Client, GatewayIntentBits } = require('discord.js');
const { joinVoiceChannel, createAudioPlayer,
createAudioResource } = require('@discordjs/voice');
const fetch = require('node-fetch');
const fs = require('fs');
const client = new Client({
intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages,
GatewayIntentBits.GuildVoiceStates, GatewayIntentBits.MessageContent]
});
client.on('messageCreate', async (message) => {
if (!message.content.startsWith('!say ')) return;
const text = message.content.slice(5);
// Generate speech with TTS.ai API
const res = await fetch('https://api.tts.ai/v1/tts', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
text: text,
model: 'kokoro',
voice: 'af_heart',
format: 'wav'
})
});
// Play in voice channel
const buffer = await res.buffer();
fs.writeFileSync('/tmp/tts.wav', buffer);
const connection = joinVoiceChannel({
channelId: message.member.voice.channelId,
guildId: message.guildId,
adapterCreator: message.guild.voiceAdapterCreator
});
const player = createAudioPlayer();
player.play(createAudioResource('/tmp/tts.wav'));
connection.subscribe(player);
});
Abòdab pou Nenpòt Sèvis Discord
Nivo gratis pou tès, plan abòdab pou serveurs actifs.
Free Tier
$0
50 kredi sou enskripsyon
- 4 modèl gratis
- Teste konfigirasyon bot ou a
- Pa gen kat kredi nesesè
Starter
$9
500 kredi / mwa
- Tout 24+ modèl vwa
- Sèvis ti a mwayen
- Akses API
Pro
$29
2000 kredi / mwa
- Sèvis trafik-wo
- Premium modèl + priyorite
- Klonaj vwa
Kesyon ki poze souvan
Kesyon komen sou TTS pou Discord
Èske w pare pou w sèvi ak Discord Bot ou?
Jwenn yon kle API epi kòmanse bati yon bot Discord TTS-powered jodi a. 24+ modèl vwa, ba latency, REST API senp.