Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samcole8/stt-linux
Simple script for global speech to text on Linux with Wayland support.
https://github.com/samcole8/stt-linux
linux speech-to-text
Last synced: about 2 months ago
JSON representation
Simple script for global speech to text on Linux with Wayland support.
- Host: GitHub
- URL: https://github.com/samcole8/stt-linux
- Owner: samcole8
- License: gpl-3.0
- Created: 2024-12-01T12:14:03.000Z (about 2 months ago)
- Default Branch: master
- Last Pushed: 2024-12-01T14:34:37.000Z (about 2 months ago)
- Last Synced: 2024-12-01T15:31:25.799Z (about 2 months ago)
- Topics: linux, speech-to-text
- Language: Python
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# stt-linux
Simple script for global speech to text on Linux with Wayland support.
## Usage
To start recording, say start typing. To stop recording, say stop typing. Letters will be entered via a virtual keyboard as if they were typed.
## Setup
1. Create and activate a virtual environment with Python:
```bash
python3 -m venv venv
source venv/bin/activate
```2. Install pip dependencies:
```bash
pip install -r requirements.txt
```3. Install wtype:
The method of installation will depend on your package manager.
For apt:
```bash
sudo apt install wtype
```
For pacman:
```bash
sudo pacman -S wtype
```
4. Run the script.
```
python3 tts.py
```