techrec/docker/config.py

10 lines
268 B
Python
Raw Normal View History

DB_URI = "sqlite:////src/db/techrec.db"
2021-09-20 22:51:48 +02:00
AUDIO_INPUT = "http://storage"
2021-09-17 11:06:05 +02:00
# decomment this if you want to test with local audio source
2021-09-20 22:51:48 +02:00
# AUDIO_INPUT = "/rec"
2021-09-15 07:51:58 +02:00
AUDIO_OUTPUT = "/src/output"
DEBUG = True
HOST = "0.0.0.0"
PORT = 8000
2021-09-15 18:22:08 +02:00
FFMPEG_OPTIONS = ["-loglevel", "warning"]