Videos
So there wasn't a solution out that would allow you to submit your audio/video files to a dockerized flask app and have your subtitle files etc generated as if you were using whisper via the command line... so I made one. Go check it out here jlonge4/whisperAI-flask-docker: I built this project because there was no user friendly way to upload a file to a dockerized flask web form and have whisper do its thing via CLI in the background. Now there is. Enjoy! (github.com)
Hey,
So I am playing around with voice assistant, and wanted to set it up locally. I set up whisper and piper as below:
whisper:
container_name: whisper
image: rhasspy/wyoming-whisper
#command: --model base-int8 --language fr
command: --model tiny-int8 --language en
privileged: true
restart: unless-stopped
environment:
- TZ=Europe/London
volumes:
- /home/pi/docker/home-automation/whisper/data:/data
ports:
- 10300:10300
piper:
container_name: piper
image: rhasspy/wyoming-piper
command: --voice en-gb-southern_english_female-low
privileged: true
restart: unless-stopped
environment:
- TZ=Europe/London
volumes:
- /home/pi/docker/home-automation/piper/data:/data
ports:
- 10200:10200I added assist_pipeline: to my config file.
When I try to add a voice assistant, faster-whisper is greyed out and piper isnt an option,
I have read that you need to configure the addon, but with docker installs there is no configure.
What am I missing?