All Projects → gen2brain → flite-go

gen2brain / flite-go

Licence: BSD-3-Clause License
Go bindings for Flite (festival-lite)

Programming Languages

go
31211 projects - #10 most used programming language
shell
77523 projects

Labels

Projects that are alternatives of or similar to flite-go

HTK
The Hidden Markov Model Toolkit (HTK) from University of Cambridge, with fixed issues.
Stars: ✭ 23 (+64.29%)
Mutual labels:  speech
SER-datasets
A collection of datasets for the purpose of emotion recognition/detection in speech.
Stars: ✭ 74 (+428.57%)
Mutual labels:  speech
ser-with-w2v2
Official implementation of INTERSPEECH 2021 paper 'Emotion Recognition from Speech Using Wav2vec 2.0 Embeddings'
Stars: ✭ 40 (+185.71%)
Mutual labels:  speech
MelNet-SpeechGeneration
Implementation of MelNet in PyTorch to generate high-fidelity audio samples
Stars: ✭ 19 (+35.71%)
Mutual labels:  speech
speech recognition ctc
Use ctc to do chinese speech recognition by keras / 通过keras和ctc实现中文语音识别
Stars: ✭ 40 (+185.71%)
Mutual labels:  speech
Fre-GAN-pytorch
Fre-GAN: Adversarial Frequency-consistent Audio Synthesis
Stars: ✭ 73 (+421.43%)
Mutual labels:  speech
opensnips
Open source projects related to Snips https://snips.ai/.
Stars: ✭ 50 (+257.14%)
Mutual labels:  speech
tt-vae-gan
Timbre transfer with variational autoencoding and cycle-consistent adversarial networks. Able to transfer the timbre of an audio source to that of another.
Stars: ✭ 37 (+164.29%)
Mutual labels:  speech
LIUM
Scripts for LIUM SpkDiarization tools
Stars: ✭ 28 (+100%)
Mutual labels:  speech
jarvis
Jarvis Home Automation
Stars: ✭ 81 (+478.57%)
Mutual labels:  speech
fade
A Simulation Framework for Auditory Discrimination Experiments
Stars: ✭ 12 (-14.29%)
Mutual labels:  speech
jackpair
p2p speech encrypting device with analog audio interface suitable for GSM phones
Stars: ✭ 26 (+85.71%)
Mutual labels:  speech
wikipron
Massively multilingual pronunciation mining
Stars: ✭ 167 (+1092.86%)
Mutual labels:  speech
nabaztag-php
a simple php implementation of a Nabaztag server
Stars: ✭ 14 (+0%)
Mutual labels:  speech
editts
Official implementation of EdiTTS: Score-based Editing for Controllable Text-to-Speech
Stars: ✭ 74 (+428.57%)
Mutual labels:  speech
KAREN
KAREN: Unifying Hatespeech Detection and Benchmarking
Stars: ✭ 18 (+28.57%)
Mutual labels:  speech
spokestack-android
Extensible Android mobile voice framework: wakeword, ASR, NLU, and TTS. Easily add voice to any Android app!
Stars: ✭ 52 (+271.43%)
Mutual labels:  speech
sova-asr
SOVA ASR (Automatic Speech Recognition)
Stars: ✭ 123 (+778.57%)
Mutual labels:  speech
Speech256
An FPGA implementation of a classic 80ies speech synthesizer. Done for the Retro Challenge 2017/10.
Stars: ✭ 51 (+264.29%)
Mutual labels:  speech
torch-asg
Auto Segmentation Criterion (ASG) implemented in pytorch
Stars: ✭ 42 (+200%)
Mutual labels:  speech

flite-go GoDoc

Golang bindings for Flite (festival-lite)

Requirements

Ubuntu
apt-get install flite-dev
Fedora
dnf install flite-devel

Installation

go get -v github.com/gen2brain/flite-go

Example

package main

import "github.com/gen2brain/flite-go"

func main() {
	// The valid names are "awb", "kal16", "kal", "rms" and "slt"
	voice, err := flite.VoiceSelect("kal")
	if err != nil {
		panic(err)
	}

    	// Use "play" for output and it will be sent to the audio device
	flite.TextToSpeech("Hello World", voice, "output.wav")
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].