google_speech 0.1.0

Rust bindings to google_speech python module
Documentation
  • Coverage
  • 3.66%
    3 out of 82 items documented0 out of 5 items with examples
  • Size
  • Source code size: 8.52 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 456.9 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 17s Average build duration of successful builds.
  • all releases: 17s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • uttarayan21/google_speech_rs
    2 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • uttarayan21

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();