beb80540b4d09c8582db2b874bff50899ff0e737
Bumps [pyo3](https://github.com/pyo3/pyo3) from 0.13.2 to 0.24.1. - [Release notes](https://github.com/pyo3/pyo3/releases) - [Changelog](https://github.com/PyO3/pyo3/blob/v0.24.1/CHANGELOG.md) - [Commits](https://github.com/pyo3/pyo3/compare/v0.13.2...v0.24.1) --- updated-dependencies: - dependency-name: pyo3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Google Speech Rust Bindings
rust bindings for the python module google_speech.
Check desbma/google_speech for installation instructions (You need the python module to make this crate work).
TL;DR
pip install google_speech
Then install sox and mp3 dependencies for sox
For archlinux
sudo pacman -S sox libmad libid3tag twolame
Only has Speech.
SpeechSegment not implemented.
Example:
use google_speech::{Speech,Lang};
let hello = Speech::new("Hello, World", Lang::en_us).unwrap();
hello.play().unwrap();
Languages
Rust
100%