9 lines
268 B
Python
9 lines
268 B
Python
DB_URI = "sqlite:////src/db/techrec.db"
|
|
AUDIO_INPUT = "http://storage"
|
|
# decomment this if you want to test with local audio source
|
|
# AUDIO_INPUT = "/rec"
|
|
AUDIO_OUTPUT = "/src/output"
|
|
DEBUG = True
|
|
HOST = "0.0.0.0"
|
|
PORT = 8000
|
|
FFMPEG_OPTIONS = ["-loglevel", "warning"]
|