Add README.md and LICENSE

This commit is contained in:
Uttarayan Mondal
2021-05-29 22:06:17 +05:30
parent 3c79d27450
commit e90db39a41
2 changed files with 694 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
# [Google Speech][google_speech] Rust Bindings
rust bindings for the python module [google_speech][google_speech].
Check [desbma/google_speech][google_speech] for installation instructions (You need the python module to make this crate work).
Only has `Speech`.
`SpeechSegment` not implemented.
## Example:
```rust
use google_speech::{Speech,Lang};
let hello = Speech::new("Hello, World", Lang::en_us).unwrap();
hello.play().unwrap();
```
[google_speech]: https://github.com/desbma/GoogleSpeech