https://github.com/codegram01/gospeech
Golang Text to Speech
https://github.com/codegram01/gospeech
cli golang texttospeech
Last synced: about 1 year ago
JSON representation
Golang Text to Speech
- Host: GitHub
- URL: https://github.com/codegram01/gospeech
- Owner: codegram01
- License: mit
- Created: 2024-09-01T02:35:52.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-05T15:48:36.000Z (about 1 year ago)
- Last Synced: 2025-03-17T01:21:32.209Z (about 1 year ago)
- Topics: cli, golang, texttospeech
- Language: Go
- Homepage: https://www.youtube.com/live/UpTZ_D2PUKU?si=XzEP6NNoX6MR0247
- Size: 130 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GoSpeech - Golang Speech
GoSpeech can generate audio for you from CLI param or from file
[Video when i create GoSpeech](https://www.youtube.com/live/UpTZ_D2PUKU?si=XzEP6NNoX6MR0247)
## Usage
```sh
gospeech -m 'Hello World' -o hello.mp3
gospeech -f content.txt -o content
```
## Install
Prerequisites: [Install Golang](https://go.dev/doc/install)
### Option 1: Install Binary
```sh
go install github.com/codegram01/gospeech@latest
```
### Option 2: Install and build from source
```sh
git clone https://github.com/codegram01/gospeech.git
cd gospeech
# Run code:
go run .
# Build
go build .
# Install command
go install
```