(summary) allow more file extensions

Allow more file extensions by default.
This commit is contained in:
Florent Chehab
2026-04-13 12:04:11 +02:00
committed by aleb_the_flash
parent 52fbd56666
commit 497b45f2ca
2 changed files with 10 additions and 1 deletions
+9 -1
View File
@@ -56,7 +56,15 @@ class Settings(BaseSettings):
# Audio recordings
recording_max_duration: Optional[int] = None
recording_allowed_extensions: Set[str] = {".ogg", ".mp4"}
recording_allowed_extensions: Set[str] = {
".ogg",
".mp4",
".m4a",
".webm",
".ogv",
".opus",
".wav",
}
recording_video_extensions: Set[str] = {".mp4"}
# Celery settings