内容简介:Botium Speech Processing is a unified, developer-friendly API to the best available Speech-To-Text and Text-To-Speech services.This is aWhile the included tools in most cases cannot compete with the big cloud-based products, for lots of applications the tr
Botium Speech Processing
Botium Speech Processing is a unified, developer-friendly API to the best available Speech-To-Text and Text-To-Speech services.
What is it ?
This is a get-shit-done -style collection of the best free and Open Source speech recognition products, the configuration options are rudimentary: it is highly opinionated about the included tools, just get the shit done.
- With Kaldi a reasonable speech recogniction performance is available with freely available data sources.
- MaryTTS is currently the best freely available speech synthesis software
- SoX is the swiss army-knife for audio file processing
While the included tools in most cases cannot compete with the big cloud-based products, for lots of applications the trade-off between price and quality is at least reasonable.
Read about the project history here
Possible Applications
Some examples what you can do with this:
- Synthesize audio tracks for Youtube tutorials
- Build voice-enabled chatbot services (for example, IVR systems)
- Classification of audio file transcriptions
- Automated Testing of Voice services with Botium
Installation
Software and Hardware Requirements
- Several gigs of RAM and 40GB free HD space
- Internet connectivity
- docker
- docker-compose
Build Docker Containers
Clone or download this repository and start with docker-compose:
> docker-compose up -d
This will take some time to build.
Point your browser to http://127.0.0.1 to open the Swagger UI and browse/use the API definition.
Configuration
This repository includes a reasonable default configuration:
- Use MaryTTS for TTS
- Use Kaldi for STT
- Use SoX for audio file conversion
Configuration changes with environment variables . See comments in this file.
Recommendation:Do not change the .env file but create a .env.local file to overwrite the default settings. This will prevent troubles on future git pull
Securing the API
The environment variable BOTIUM_API_TOKENS contains a list of valid API Tokens accepted by the server (separated by whitespace or comma). The HTTP Header BOTIUM_API_TOKEN is validated on each call to the API.
Testing
Point your browser to http://127.0.0.1/dictate to open a rudimentary dictate.js-interface for testing speech recognition.
Attention: in Google Chrome this only works with services published as HTTPS, you will have to take of this yourself. For example, you could publish it via ngrok tunnel.
Point your browser to http://127.0.0.1/tts to open a MaryTTS interface for testing speech synthesis.
API Definition
See swagger.json :
-
HTTP POST to /api/stt/{language} for Speech-To-Text
curl -X POST " http://127.0.0.1/api/stt/en " -H "Content-Type: audio/wav" -T sample.wav
-
HTTP GET to /api/tts/{language}?text=... for Text-To-Speech
curl -X GET " http://127.0.0.1/api/tts/en?text=hello%20world " -o tts.wav
-
HTTP POST to /api/convert/{profile} for audio file conversion
curl -X POST " http://127.0.0.1/api/convert/mp3tomonowav " -H "Content-Type: audio/mp3" -T sample.mp3 -o sample.wav
Contributing
To be done: contribution guidelines.
We are open to any kind of contributions and are happy to discuss, review and merge pull requests.
Big Thanks
This project is standing on the shoulders of giants.
- Kaldi GStreamer server and Docker images
- MaryTTS
- SVOX Pico Text-to-Speech
- Kaldi
- Kaldi Tuda Recipe
- Deepspeech and Deepspeech German
- SoX
- dictate.js
以上所述就是小编给大家介绍的《Low-Key Text-to-Speech and Speech-to-Text Open Source Software Stack》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
ACM国际大学生程序设计竞赛题解
赵端阳//袁鹤 / 电子工业 / 2010-6 / 38.00元
《ACM国际大学生程序设计竞赛题解(1)》可以作为高等院校有关专业的本科和大专学生参加国际大学生程序设计竞赛的辅导教材,或者作为高等院校数据结构、C/C++程序设计或算法设计与分析等相关课程的教学参考书。随着各大专院校参加ACM/ICPC热情的高涨,迫切需要有关介绍ACM国际大学生程序设计竞赛题解的书籍。《ACM国际大学生程序设计竞赛题解(1)》根据浙江大学在线题库的前80题,进行了解答(个别特别......一起来看看 《ACM国际大学生程序设计竞赛题解》 这本书的介绍吧!