Skip to content

snomiao/stdout2webstream

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stdout2webstream

Use cases

1. Stream your log file into web

# some command append into logs
watch "date >> logs/main.log"

# follow the logs into web
tail -f logs/main.log | docker run -p 8080:80 -it ghcr.io/snomiao/stdout2webstream

# see the logs in web, open this link in your browser
open http://localhost:8080/

2. Speak to web in realtime

# launch your voice recognize service
git clone https://github.com/davabase/whisper_real_time
pip install -r requirements.txt
py transcribe_demo.py --non_english --model small | tee out.log

# follow the logs into web
tail -f out.log | docker run -p 9123:80 -i ghcr.io/snomiao/stdout2webstream

# see the logs in web, open this link in your browser
open http://localhost:8080/

Reference

About

Convert your stdout into webstream

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors