All Projects → lunixbochs → feeds

lunixbochs / feeds

Licence: MIT License
transcribe audio feeds into public web ui

Programming Languages

python
139335 projects - #7 most used programming language
javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects
VCL
57 projects

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

python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt

Generate the config with

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:

docker run --rm -d -p 127.0.0.1:27017:27017 --name mongodb-feeds mongo:4.2.7-bionic

Run it with

FLASK_SETTINGS=config.cfg python3 run.py
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].