Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lunixbochs/feeds
transcribe audio feeds into public web ui
https://github.com/lunixbochs/feeds
Last synced: about 1 month ago
JSON representation
transcribe audio feeds into public web ui
- Host: GitHub
- URL: https://github.com/lunixbochs/feeds
- Owner: lunixbochs
- License: mit
- Created: 2020-05-31T21:08:58.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-08-31T05:28:34.000Z (over 2 years ago)
- Last Synced: 2024-11-02T03:32:53.434Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 150 KB
- Stars: 42
- Watchers: 12
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# feeds
This project transcribes audio feeds with speech recognition software. It has a frontend in which people can look at the transcriptions and suggest improvements.
## Setup
To keep your system python clean, usage of a venv is helpful
```sh
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
```Generate the config with
```sh
cd server
python3 gencfg.py > config.cfg
```You need a MongoDB running on the default port of `27017`. If you don’t want it in your system, you may use docker:
```sh
docker run --rm -d -p 127.0.0.1:27017:27017 --name mongodb-feeds mongo:4.2.7-bionic
```Run it with
```sh
FLASK_SETTINGS=config.cfg python3 run.py
```