内容简介: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》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
利用Python进行数据分析 原书第2版
Wes McKinney / 徐敬一 / 机械工业出版社 / 2018-7 / 119
本书由Python pandas项目创始人Wes McKinney亲笔撰写,详细介绍利用Python进行操作、处理、清洗和规整数据等方面的具体细节和基本要点。第2版针对Python 3.6进行全面修订和更新,涵盖新版的pandas、NumPy、IPython和Jupyter,并增加大量实际案例,可以帮助你高效解决一系列数据分析问题。 第2版中的主要更新包括: • 所有的代码,包括把Py......一起来看看 《利用Python进行数据分析 原书第2版》 这本书的介绍吧!