https://github.com/kabir5296/liveaudiotranscription
Simple implementation of live audio transcription. Work in progress.
https://github.com/kabir5296/liveaudiotranscription
Last synced: 3 months ago
JSON representation
Simple implementation of live audio transcription. Work in progress.
- Host: GitHub
- URL: https://github.com/kabir5296/liveaudiotranscription
- Owner: Kabir5296
- Created: 2025-01-06T09:17:43.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-01-07T11:39:14.000Z (5 months ago)
- Last Synced: 2025-01-30T23:48:46.082Z (5 months ago)
- Language: Python
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Live Audio Transcription
By Mahfuzul Kabir,
Machine Learning Engineer,
ACI Limited# USE:
Install Requirements
```
python3.9 -m venv venv
source venv/bin/activatepip install -r requirements.txt
```Install Javascript Dependencies
```
sudo npm install http-server
```Run Static HTML Page as a Client at Port 8080
```
http-server
```Run Uvicorn as a Server at Port 8000
```
python server.py
```Access the test client at http://localhost:8080
Make sure to use localhost and http, since ip:port won't work without SSL verification.