Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/petusotwo/voice_to_text
https://github.com/petusotwo/voice_to_text
pyqt6 python speech-recognition voice-recognition
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/petusotwo/voice_to_text
- Owner: PetusoTwo
- Created: 2024-08-13T16:30:23.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-08-13T18:36:27.000Z (3 months ago)
- Last Synced: 2024-08-14T19:59:28.728Z (3 months ago)
- Topics: pyqt6, python, speech-recognition, voice-recognition
- Language: Python
- Homepage:
- Size: 28.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Speech Recognition App
Esta es una aplicación de reconocimiento de voz desarrollada con PyQt6 y la biblioteca `speech_recognition`. Permite convertir voz en texto. La aplicación también incluye una interfaz gráfica para facilitar el uso.
![image](https://github.com/user-attachments/assets/9460b3a5-5acd-4ae4-ad97-0dc4edb1c66a)
## Características
- **Conversión de voz a texto**: Usa la API de Google para convertir la voz capturada por el micrófono en texto.
- **Copiar texto al portapapeles**: Permite copiar el texto generado al portapapeles.
- **Interfaz gráfica**: Ventana sin bordes con opciones para moverla, cerrar y utilizar funcionalidades de reconocimiento de voz.## Requisitos
- Python
- PyQt6
- speech_recognition## Instalación
1. Clona el repositorio:
```bash
git clone https://github.com/PetusoTwo/Voice_To_Text.git
```2. Instala las dependencias necesarias:
```bash
pip install SpeechRecognition
pip install speech_recognition
pip install PyQt6
```## Uso
1. Ejecuta la aplicación:
```bash
python main.py
```2. La aplicación se abrirá con una ventana sin bordes. Puedes:
- Hacer clic en el botón para convertir voz en texto.
- Hacer clic en el botón para copiar el texto al portapapeles.
- Usar el botón para verificar la disponibilidad de la función de voz (aún no disponible).## Funcionalidades Futuras
- **Convertir voz en texto directamente desde archivos de audio**: Implementar la capacidad de convertir archivos de audio pregrabados en texto.