Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tylim88/voicefu-back-end
Translate Speech Into Japanese
https://github.com/tylim88/voicefu-back-end
chatgpt speech-synthesis voicevox whisper
Last synced: 15 days ago
JSON representation
Translate Speech Into Japanese
- Host: GitHub
- URL: https://github.com/tylim88/voicefu-back-end
- Owner: tylim88
- Created: 2023-03-24T03:02:16.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-02T00:05:42.000Z (2 months ago)
- Last Synced: 2024-10-24T10:07:59.026Z (22 days ago)
- Topics: chatgpt, speech-synthesis, voicevox, whisper
- Language: TypeScript
- Homepage: https://voicefu.com
- Size: 6.38 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE,md
Awesome Lists containing this project
README
# Voice Synthesis
[front end code and intro](https://github.com/tylim88/Voicefu)
## Development Mode
1. This project use Firebase Firestore, please enable it in Firebase Console
2. Create a `dev.env.json` file at project root and paste:```json
{
"firebase": {
"type": "service_account",
"project_id": "?",
"private_key_id": "?",
"private_key": "?",
"client_email": "?",
"client_id": "?",
"auth_uri": "?",
"token_uri": "?",
"auth_provider_x509_cert_url": "?",
"client_x509_cert_url": "?"
},
"openAI": { "key": "?" },
"cors": ["http://127.0.0.1/:5173"],
"production": false,
"email": "does not matter in dev mode"
}
```3. Fill in the `?` with Firebase service account and openai api key. Do note that they are secrets.
4. Install docker and start docker.
5. Run `npm run docker`, this will download Voicevox image(first time) and run Voicevox container.
6. Open a new terminal and run `npm run dev` to start the server.
## Production Mode
The repo is ready for production, but you will probably go with your tech stack anyway.
Open an issue if you really need one, and I will complete this read me.