https://github.com/locaal-ai/lexisynth
Real-time AI language processor for transcription, translation and speech synthesis
https://github.com/locaal-ai/lexisynth
Last synced: 8 days ago
JSON representation
Real-time AI language processor for transcription, translation and speech synthesis
- Host: GitHub
- URL: https://github.com/locaal-ai/lexisynth
- Owner: locaal-ai
- License: mit
- Created: 2024-04-28T17:39:08.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-04T19:15:57.000Z (12 months ago)
- Last Synced: 2024-11-06T01:36:54.021Z (6 months ago)
- Language: Python
- Size: 1.63 MB
- Stars: 22
- Watchers: 1
- Forks: 4
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LexiSynth
LexiSynth is an AI speech analysis and synthesis tool built with Python. It leverages the power of PyInstaller, CTranslate2, and Faster-Whisper to provide a robust and efficient solution for speech processing tasks.
## Features
- Speech Analysis: Analyze speech patterns and extract meaningful insights.
- Speech Synthesis: Convert text into natural-sounding speech.
- Built with Python: Leverage the power and simplicity of Python for customization and rapid development.
- CTranslate2 and Faster-Whisper: Utilize these powerful libraries for efficient and high-quality speech processing.## Build Instructions
To build LexiSynth using PyInstaller, follow the steps below:
1. Ensure you have Python 3.11. You can check your Python version by running `python --version` in your terminal.
2. Install the required Python packages. In the root directory of the project, run:
```bash
pip install -r requirements.txt
```3. Build the executable using PyInstaller. In the root directory of the project, run:
MacOSX:
```bash
pyinstaller --clean --noconfirm lexisynth.spec -- --mac_osx
```Windows:
```bash
pyinstaller --clean --noconfirm lexisynth.spec -- --win
```This will create a `dist` directory containing the executable file for LexiSynth.
## Usage
To use LexiSynth, simply run the executable file created in the `dist` directory.
## License
This project is released under the MIT license. See [LICENSE](LICENSE) for details.